amin101 / irticket
a simple ticketing system
v1.0
2016-03-01 16:48 UTC
Requires
- php: >=5.5.9
- illuminate/support: ~5.0
This package is not auto-updated.
Last update: 2025-01-16 02:00:29 UTC
README
a simple tickets system for laravel 5.2+ which integrates with Laravel default users system.
##Features:
- Users can create tickets, keep track of their tickets status, giving comments, and close (resolve) their own tickets.
- Fluent admin panel.
- Localization (English, Farsi).
##Requirements First make sure you have got this Laravel setup working:
- Laravel 5.2
- Users table
- 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')
.