This is a ticket system for filament admin panel
You can install the package via composer:
composer require ichbin/filament-ticket
You can publish and run the migrations with:
php artisan vendor:publish --tag="filament-ticket-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="filament-ticket-config"
This is the contents of the published config file:
return [
'resources' => [
TicketResource::class,
CategoryResource::class,
StatusResource::class,
PriorityResource::class,
],
'models' => [
\App\Models\User::class,
],
"navigation_group" => "Ticket System",
"ticket_label" => "Custom Fields",
"ticket_responses_label" => "Custom Fields Responses",
"category_label" => "Custom Fields",
"category_responses_label" => "Custom Fields Responses",
"status_label" => "Custom Fields",
"status_responses_label" => "Custom Fields Responses",
"priority_label" => "Custom Fields",
"priority_responses_label" => "Custom Fields Responses",
];
Optionally, you can publish the views using
php artisan vendor:publish --tag="filament-ticket-views"
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.