ichbin / filament-ticket
This is a ticket system for filament admin panel
v1.0.0
2022-09-30 10:21 UTC
Requires
- php: ^8.0 | ^8.1
- filament/filament: ^2.11
- illuminate/contracts: ^9.0
- spatie/laravel-package-tools: ^1.13.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpunit/phpunit: ^9.5
README
This is a ticket system for filament admin panel
Installation
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"
Usage
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.