@extends('layouts.help') @push('styles') @endpush @section('content')
← Back to Tickets
Ticket: {{ $ticket->subject }}

Status: {{ $ticket->status }} | Priority: {{ $ticket->priority }}

Category: {{ optional($ticket->category)->name ?? 'N/A' }}


{{ $ticket->description }}

{{ $ticket->created_at->diffForHumans() }}
@if($ticket->replies)

Reply

@foreach($ticket->replies as $reply) @php $first_letter = strtoupper(substr($reply->user_name ?? 'Guest', 0, 1)); @endphp @endforeach
@endif {{-- @foreach($ticket->replies as $reply)

Reply

{{ $reply->message }}

@if ($reply->attachment) View Attachment @endif
{{ $reply->user->name }} replied {{ $reply->created_at->diffForHumans() }}
@endforeach --}}
@csrf
@endsection @push('scripts') @endpush