@php $dispatch = $ambulanceDispatch?->payload ?? []; $scene = $ambulanceScene?->payload ?? []; $enRoute = $ambulanceEnRoute?->payload ?? []; $handover = $ambulanceHandover?->payload ?? []; @endphp

Ambulance overview

Dispatch, scene triage, en-route care, and facility handover for this run.

Call

{{ $dispatch['call_nature'] ?? '—' }}

Priority {{ $dispatch['priority'] ?? '—' }}

Scene

{{ $scene['chief_complaint'] ?? '—' }}

Acuity {{ $scene['acuity'] ?? '—' }}

Destination / handover

{{ $enRoute['destination'] ?? ($handover['receiving_facility'] ?? 'Not set') }}

{{ $handover['outcome'] ?? '—' }}

Location
{{ $dispatch['location'] ?? '—' }}
En-route interventions
{{ \Illuminate\Support\Str::limit($enRoute['interventions'] ?? '—', 80) }}
Queue
{{ $workspaceVisit->appointment?->queue_ticket_number ?? '—' }} @if ($workspaceVisit->appointment?->queue_ticket_status) ({{ $workspaceVisit->appointment->queue_ticket_status }}) @endif
Checked in
{{ $workspaceVisit->checked_in_at?->format('d M Y H:i') ?? '—' }}
@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

{{ $alert['message'] ?? '' }}

@endforeach
@endif