#{{ $ticket->id }} - {{ $ticket->title }}
@if($ticket->status === 'open') Open @elseif($ticket->status === 'in_progress') In Progress @elseif($ticket->status === 'waiting') Pending @elseif($ticket->status === 'answered') Answered @elseif($ticket->status === 'closed') Closed @endif
{{ __('Description') }}:
{{ __(ucfirst($ticket->description)) }}
{{ __('Priority') }}:
{{ __(ucfirst($ticket->priority)) }}
{{ __('Created') }}: {{ $ticket->created_at->format('Y-m-d H:i') }}
{{ __('Messages') }}
@if($ticket->status != 'closed')
@else
{{ __('This ticket is closed') }}
@endif
@if($ticket->status != 'closed')
@endif