Back

{{ $patient->fullName() }}

{{ $patient->patient_number }} · Visit #{{ $visit->id }} · Stage {{ $visit->specialty_stage ?? '—' }} · {{ $visit->checked_in_at?->format('d M Y H:i') ?? '—' }}

Dispatch

@if ($dispatch)
Call nature
{{ $dispatch->payload['call_nature'] ?? '—' }}
Priority
{{ $dispatch->payload['priority'] ?? '—' }}
Location
{{ $dispatch->payload['location'] ?? '—' }}
Crew
{{ $dispatch->payload['crew'] ?? '—' }}
Vehicle
{{ $dispatch->payload['vehicle'] ?? '—' }}
Notes
{{ $dispatch->payload['dispatch_notes'] ?? '—' }}
@else

No dispatch recorded.

@endif

Scene / triage

@if ($scene)
Complaint
{{ $scene->payload['chief_complaint'] ?? '—' }}
Acuity
{{ $scene->payload['acuity'] ?? '—' }}
Findings
{{ $scene->payload['scene_findings'] ?? '—' }}
Vitals
{{ $scene->payload['vitals_summary'] ?? '—' }}
GCS
{{ $scene->payload['gcs'] ?? '—' }}
@else

No scene assessment recorded.

@endif

En-route care

@if ($enRoute)
Destination
{{ $enRoute->payload['destination'] ?? '—' }}
Interventions
{{ $enRoute->payload['interventions'] ?? '—' }}
Medications
{{ $enRoute->payload['medications'] ?? '—' }}
Response
{{ $enRoute->payload['response_to_treatment'] ?? '—' }}
@else

No en-route care recorded.

@endif

Handover

@if ($handover)
Facility
{{ $handover->payload['receiving_facility'] ?? '—' }}
Clinician
{{ $handover->payload['receiving_clinician'] ?? '—' }}
Summary
{{ $handover->payload['handover_summary'] ?? '—' }}
Outcome
{{ $handover->payload['outcome'] ?? '—' }}
Pathway
{{ $handover->payload['time_critical'] ?? '—' }}
@else

No handover recorded.

@endif