Back

{{ $patient->fullName() }}

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

History

@if ($history)
HPI
{{ $history->payload['history'] ?? '—' }}
Mechanism
{{ $history->payload['mechanism'] ?? '—' }}
Past ortho
{{ $history->payload['past_ortho'] ?? '—' }}
Medications
{{ $history->payload['medications'] ?? '—' }}
@else

No history recorded.

@endif

Exam

@if ($exam)
Complaint
{{ $exam->payload['chief_complaint'] ?? '—' }}
Side / region
{{ $exam->payload['side'] ?? '—' }} · {{ $exam->payload['region'] ?? '—' }}
Neurovascular
{{ $exam->payload['neurovascular'] ?? '—' }}
Classification
{{ $exam->payload['fracture_classification'] ?? '—' }}
Findings
{{ $exam->payload['exam_findings'] ?? '—' }}
@else

No exam recorded.

@endif

Imaging

@if ($imaging)
Modality
{{ $imaging->payload['modality'] ?? '—' }}
Region
{{ $imaging->payload['region'] ?? '—' }}
Findings
{{ $imaging->payload['findings'] ?? '—' }}
Impression
{{ $imaging->payload['impression'] ?? '—' }}
@else

No imaging recorded.

@endif

Diagnosis & plan

@if ($plan)
Diagnosis
{{ $plan->payload['diagnosis'] ?? '—' }}
Plan
{{ $plan->payload['plan'] ?? '—' }}
Weight-bearing
{{ $plan->payload['weight_bearing'] ?? '—' }}
Follow-up
{{ $plan->payload['follow_up'] ?? '—' }}
@else

No plan recorded.

@endif

Procedure / cast

@if ($procedure)
Procedure
{{ $procedure->payload['procedure'] ?? '—' }}
Outcome
{{ $procedure->payload['outcome'] ?? '—' }}
Plan
{{ $procedure->payload['post_procedure_plan'] ?? '—' }}
@else

No procedure recorded.

@endif