@extends('layouts.app') @section('title', 'Ticket #' . $ticket->ticket_code) @section('content')

Support Ticket #{{ $ticket->ticket_code }}

Tenant: {{ $ticket->tenant->company_name }} • Priority: {{ ucfirst($ticket->priority) }}

Back to Tickets

{{ $ticket->subject }}

{{ $ticket->description }}

Reported: {{ $ticket->created_at->format('d M Y, h:i A') }}
@foreach($ticket->replies as $reply)
{{ $reply->user->name }} @if($reply->is_internal_note) Private Staff Note @endif

{{ $reply->message }}

{{ $reply->created_at->diffForHumans() }}
@endforeach
@csrf
@endsection