amin101/irticket

a simple ticketing system

v1.0 2016-03-01 16:48 UTC

This package is not auto-updated.

Last update: 2024-09-12 00:24:21 UTC


README

a simple tickets system for laravel 5.2+ which integrates with Laravel default users system.

##Features:

  1. Users can create tickets, keep track of their tickets status, giving comments, and close (resolve) their own tickets.
  2. Fluent admin panel.
  3. Localization (English, Farsi).

##Requirements First make sure you have got this Laravel setup working:

  1. Laravel 5.2
  2. Users table
  3. Bootstrap 3+

Installation :

Install Irticket package

composer require amin101/irticket:1.*

Add this line on your config/app.php in Service Providers section.

Amin101\Irticket\IrticketServiceProvider::class

Run this code to publish migrations and assets

php artisan vendor:publish

Run three migrations

php artisan migrate

##Views after publishing , irticket views files are under resources/views/vendor/irticket path. feel free to edit app.blade.php to fit it to your site template structure. just dont forget to add @yield('content') .