@if ($tickets->isEmpty())
{{ __('app.dashboard.no_tickets') }}
@else| {{ __('app.ticket.reference') }} | {{ __('app.ticket.subject') }} | {{ __('app.ticket.customer') }} | {{ __('app.ticket.status_label') }} | {{ __('app.ticket.priority_label') }} |
|---|---|---|---|---|
| {{ $ticket->reference }} | {{ \Illuminate\Support\Str::limit($ticket->subject, 40) }} | {{ $ticket->customer?->name ?? '—' }} | {{ __('app.ticket.status.'.$ticket->status) }} | {{ __('app.ticket.priority.'.$ticket->priority) }} |