Back to my tickets
@if ($canChat)
Continue in chat
@elseif (!$ticket->isOpen())
Chat is unavailable while this ticket is closed.
@if ($canReopen)
@endif
@endif
{{ $ticket->displayLabel() }}
@if ($ticket->isOpen())
Open
@else
Closed
@endif
Ref: {{ $ticket->ticket_number }}
Message
{{ $ticket->message }}
@if ($attachmentLinks !== [])
Attachments ({{ count($attachmentLinks) }})
@include('support.partials.ticket-attachment-grid', [
'attachmentLinks' => $attachmentLinks,
'large' => true,
])
@endif