mobaroklab / support-tickety
There is no license information available for the latest version (v2.0.0) of this package.
A Laravel package for managing Support tickets
Package info
github.com/mobarokhossen/support-tickety
Language:Blade
pkg:composer/mobaroklab/support-tickety
v2.0.0
2024-07-07 05:15 UTC
Requires
- php: ^7.3|^8.0
- illuminate/support: ^5.6|^6.0|^7.0|^8.0|^9.0|^10.0
README
Support Tickety
A Laravel package for managing support tickets.
Features
- Create, view, update, and delete support tickets
- Assign tickets to users
- Track the status of tickets (open, closed, in-progress)
- Notifications for ticket updates
- Flexible and extendable
Laravel Versions
| Laravel | Support Tickety |
|---|---|
| 5.6 - 10.x | 1.* |
Installation
Step 1: Composer
You can install the package via composer:
composer require mobaroklab/support-tickety
"require": { "mobaroklab/support-tickety": "~1.0" }
OR place manually in composer.json:
"require": { "mobaroklab/support-tickety": "~1.0" }
composer update
Step 2: Service Provider
Add the service provider to config/app.php under providers:
php artisan vendor:publish --provider="MobarokLab\SupportTickety\SupportTicketServiceProvider"
OR place manually
'providers' => [ MobarokLab\SupportTickety\SupportTicketServiceProvider::class, ],