webwork / customersupport
Simple customer support tool for Laravel
Requires
- php: >=5.4.0
- illuminate/config: ~5.0
- illuminate/database: ~5.0
- illuminate/support: ~5.0
- nesbot/carbon: ~1.0
Requires (Dev)
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-11-08 11:27:17 UTC
README
This package will allow you to add a full customer support system into your Laravel application.
Leave some feedback
How are you using laravel-customer-support?
Features
Installation (Laravel 5.x)
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
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.
Example Projects
Security
If you discover any security related issues, please email Khachik Tadevosyan instead of using the issue tracker.