Skip to content

A ticket system for filament admin panel

License

Notifications You must be signed in to change notification settings

boyfromhell/filament-ticket

Repository files navigation

This is a ticket system for filament admin panel

Latest Version on Packagist Total Downloads

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.

About

A ticket system for filament admin panel

Resources

License

Stars

Watchers

Forks

Packages

No packages published