@extends('layouts.app') @section('title', 'Support ticket '.$ticket->displayLabel()) @push('styles') @endpush @section('contents')
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 }}
Submitted

{{ $ticket->created_at->format('d M Y, H:i') }}

Last updated

{{ ($ticket->updated_at ?? $ticket->created_at)->format('d M Y, H:i') }}

Message

{{ $ticket->message }}

@if ($attachmentLinks !== [])
Attachments ({{ count($attachmentLinks) }}) @include('support.partials.ticket-attachment-grid', [ 'attachmentLinks' => $attachmentLinks, 'large' => true, ])
@endif
@endsection @push('scripts') @if ($canReopen) @endif @endpush