{{ __('Recent support tickets for this subscriber') }}
| {{ __('Ticket') }} | {{ __('Subject') }} | {{ __('Raised') }} | {{ __('Priority') }} | {{ __('Status') }} |
|---|---|---|---|---|
| {{ $t->ticket_no }} | {{ $t->subject }} @if ($t->admin_reply) {{ Str::limit($t->admin_reply, 60) }} @endif | {{ $t->created_at->format('M j, Y') }} | @php $pTone = match (strtolower((string) $t->priority)) { 'high', 'urgent' => 'danger', 'medium' => 'warning', default => 'secondary', }; @endphp {{ ucfirst((string) $t->priority) ?: '—' }} | @php $sTone = match (strtolower((string) $t->status)) { 'closed', 'resolved' => 'success', 'open' => 'warning', default => 'secondary', }; @endphp {{ ucfirst((string) $t->status) }} |