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

v2.0.0 2024-07-07 05:15 UTC

This package is auto-updated.

Last update: 2025-04-07 06:51:59 UTC


README

Latest Version Total Downloads Software License

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,
],