├── src ├── views │ ├── errors │ │ └── form_error.blade.php │ ├── partials │ │ └── common-header.blade.php │ ├── user_tickets.blade.php │ ├── create.blade.php │ ├── options.blade.php │ ├── layouts │ │ └── master.blade.php │ └── view.blade.php ├── Models │ ├── TicketComment.php │ ├── TicketOption.php │ └── Ticket.php ├── Traits │ └── UserTicket.php ├── migrations │ ├── 2018_10_23_115912_add_laraticket_admin_to_users.php │ ├── 2018_02_11_104552_create_ticket_comments_table.php │ ├── 2018_02_09_154337_create_ticket_options_table.php │ └── 2018_02_09_155151_create_tickets_table.php ├── LaraTicketServiceProvider.php ├── routes.php ├── Events │ ├── TicketClosed.php │ ├── TicketDeleted.php │ ├── TicketSubmitted.php │ └── TicketReplied.php ├── Controllers │ ├── TicketOptionController.php │ └── TicketController.php ├── config │ └── laraticket.php └── Notifications │ └── TicketNotification.php ├── composer.json └── README.md /src/views/errors/form_error.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 |
| Subject | 25 |Status | 26 |Created | 27 |Last updated | 28 |Priority | 29 |Owner | 30 |Category | 31 |
|---|---|---|---|---|---|---|
| {{ $ticket->title }} | 37 |{{ $ticket->status }} | 38 |{{ $ticket->created_at->diffForHumans() }} | 39 |{{ $ticket->updated_at->diffForHumans() }} | 40 |{{ $ticket->priority }} | 41 |{{ $ticket->user_name }} | 42 |{{ $ticket->category }} | 43 |
Description
37 | {!! $ticket->body !!} 38 |Comments
46 |