{{ __('Tickets') }}

{{ __('Recent support tickets for this subscriber') }}

{{ trans_choice(':count record|:count records', $this->tickets->count(), ['count' => $this->tickets->count()]) }}
@if ($this->tickets->isEmpty())
{{ __('No tickets for this subscriber.') }}
@else
@foreach ($this->tickets as $t) @endforeach
{{ __('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) }}
@endif