This guide assumes that you already know how to install and configure Laravel and have the latest version of Composer installed.
Extract the files from the archive you have downloaded from CodeCanyon into a laravel-comments
folder in your project root.
Edit your composer.json
file and add a local path repository:
"repositories": [
{
"type": "path",
"url": "./laravel-comments"
}
]
In your terminal run:
composer require hazzard/laravel-comments *@dev
Next, you must install the service provider:
// config/app.php
'providers' => [
...
Hazzard\Comments\CommentsServiceProvider::class,
];
Run the migrate command to create the necessary tables:
php artisan migrate
Publish the assets files with:
php artisan vendor:publish --provider="Hazzard\Comments\CommentsServiceProvider" --tag=public
You can publish the config-file with:
php artisan vendor:publish --provider="Hazzard\Comments\CommentsServiceProvider" --tag=config
Head over to the Usage section to get started.
You can clone the demo version from the GitHub repository:
git clone https://github.com/hazzardweb/laravel-comments-demo.git
Then you can continue with the normal installation.
Laravel Comments requires Laravel >= 5.3 and supports the following browsers (desktop and mobile): Chrome, Firefox, Opera, Safari, MS Edge and IE10+.