{{__('My Tickets')}}
{{__('Ticket Number')}} | {{__('Subject')}} | {{__('Category')}} | {{__('Priority')}} | {{__('Status')}} | {{__('Last Activity')}} | {{__('Actions')}} |
---|---|---|---|---|---|---|
{{ $ticket->ticket_number }} @if($ticket->getUnreadCountForUser(auth()->id()) > 0) {{ $ticket->getUnreadCountForUser(auth()->id()) }} @endif |
{{ \Str::limit($ticket->subject, 50) }}
|
{{ $ticket->category_text }} | {{ $ticket->priority_text }} | {{ $ticket->status_text }} | {{ $ticket->last_activity_at->diffForHumans() }} | {{__('View')}} |
{{ $tickets->appends(request()->query())->links() }}
@else
{{__('No tickets found')}}
{{__('You haven\'t created any support tickets yet.')}}