@php $triage = $emergencyTriage; $payload = $triage?->payload ?? []; $latest = $emergencyLatestVitals; @endphp

Emergency overview

Acuity, ABC flags, and latest vitals for this visit.

Acuity

{{ $payload['acuity'] ?? 'Not triaged' }}

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

ABC

A {{ ($payload['airway_ok'] ?? true) ? '✓' : '✗' }} · B {{ ($payload['breathing_ok'] ?? true) ? '✓' : '✗' }} · C {{ ($payload['circulation_ok'] ?? true) ? '✓' : '✗' }}

Pain {{ $payload['pain_score'] ?? '—' }} · GCS {{ $payload['gcs'] ?? '—' }}

Latest vitals

@if ($latest)

BP {{ $latest->bp_systolic ?? '—' }}/{{ $latest->bp_diastolic ?? '—' }} · P {{ $latest->pulse ?? '—' }} · SpO₂ {{ $latest->spo2 ?? '—' }}%

{{ $latest->recorded_at?->format('d M H:i') }}

@else

None recorded

@endif
Mode of arrival
{{ $payload['mode_of_arrival'] ?? '—' }}
Disposition intent
{{ $payload['disposition_intent'] ?? '—' }}
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