Laravel Customer Support
This package will allow you to add a full customer support system into your Laravel application., (*1)
Leave some feedback
How are you using laravel-customer-support?, (*2)
Features
Installation (Laravel 5.x)
In composer.json:, (*3)
"require": {
"webwork/customersupport":"1.0"
}
Run:, (*4)
composer update
Add the service provider to config/app.php under providers:, (*5)
'providers' => [
Webwork\Customersupport\CustomersupportServiceProvider::class,
]
Publish Assets, (*6)
php artisan vendor:publish --provider="Webwork\Customersupport\CustomersupportServiceProvider"
Update config file to reference your User Model:, (*7)
config/customersupport.php
Migrate your database:, (*8)
php artisan migrate
Examples
Note: These examples use the laravelcollective/html package that is no longer included in Laravel 5 out of the box. Make sure you require this dependency in your composer.json file if you intend to use the example files., (*9)
Example Projects
Security
If you discover any security related issues, please email Khachik Tadevosyan instead of using the issue tracker., (*10)
Credits