Package Data | |
---|---|
Maintainer Username: | khachik1990 |
Maintainer Contact: | tadevosyan.khachik@gmail.com (Khachik Tadevosyan) |
Package Create Date: | 2015-12-18 |
Package Last Update: | 2015-12-21 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-18 03:03:25 |
Package Statistics | |
---|---|
Total Downloads: | 123 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This package will allow you to add a full customer support system into your Laravel application.
How are you using laravel-customer-support?
In composer.json:
"require": {
"webwork/customersupport":"1.0"
}
Run:
composer update
Add the service provider to config/app.php
under providers
:
'providers' => [
Webwork\Customersupport\CustomersupportServiceProvider::class,
]
Publish Assets
php artisan vendor:publish --provider="Webwork\Customersupport\CustomersupportServiceProvider"
Update config file to reference your User Model:
config/customersupport.php
Migrate your database:
php artisan migrate
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.
If you discover any security related issues, please email Khachik Tadevosyan instead of using the issue tracker.