ichbin/filament-ticket

This is a ticket system for filament admin panel

v1.0.0 2022-09-30 10:21 UTC

This package is auto-updated.

Last update: 2024-06-24 05:50:44 UTC


README

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.