{{ __('All Tickets') }}
@forelse($tickets as $ticket) @empty @endforelse
{{ __('ID') }} {{ __('User') }} {{ __('Title') }} {{ __('Status') }} {{ __('Priority') }} {{ __('Last Update') }} {{ __('Created') }} {{ __('Action') }}
#{{ $ticket->id }} {{ $ticket->user->username ?? __('Deleted') }} {{ $ticket->title }} {{ __(ucfirst($ticket->status)) }} {{ __(ucfirst($ticket->priority)) }} {{ $ticket->updated_at->format('Y-m-d H:i') }} {{ $ticket->created_at->format('Y-m-d H:i') }} {{ __('View') }}
{{ __('No tickets found') }}
{{ $tickets->links() }}