Total Tickets
{{ $totalTickets }}
Open
{{ $openTickets }}
Closed
{{ $closedTickets }}
Reopened
{{ $reopenedTickets }}
| ID | Subject | Company/Client | Status | Replies | Created | Actions |
|---|---|---|---|---|---|---|
| #{{ $ticket->id }} |
{{ Str::limit($ticket->subject, 40) }}
{{ Str::limit($ticket->description, 50) }}
|
{{ $ticket->company_sno }}
C: {{ $ticket->client_sno }}
|
@if($ticket->status === 'open') radio_button_checked Open @elseif($ticket->status === 'closed') check_circle Closed @elseif($ticket->status === 'reopened') priority_high Reopened @endif | {{ $ticket->replies ? $ticket->replies->count() : 0 }} | {{ $ticket->created_at->format('M d, Y') }} | visibility View |
|
inbox
No tickets found |
||||||