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'] ?? '—' }}
- Ear
- {{ $history->payload['ear_symptoms'] ?? '—' }}
- Nose
- {{ $history->payload['nose_symptoms'] ?? '—' }}
- Throat
- {{ $history->payload['throat_symptoms'] ?? '—' }}
- Medications
- {{ $history->payload['medications'] ?? '—' }}
@else
No history recorded.
@endif
Exam
@if ($exam)
- Complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- Ear
- {{ $exam->payload['ear_findings'] ?? '—' }}
- Nose
- {{ $exam->payload['nose_findings'] ?? '—' }}
- Throat
- {{ $exam->payload['throat_findings'] ?? '—' }}
- Hearing
- {{ $exam->payload['hearing'] ?? '—' }}
- Airway
- {{ ! empty($exam->payload['airway_concern']) ? 'Concern flagged' : 'No concern' }}
@else
No exam recorded.
@endif
Investigations
@if ($investigation)
- Investigation
- {{ $investigation->payload['investigation'] ?? '—' }}
- Findings
- {{ $investigation->payload['findings'] ?? '—' }}
- Impression
- {{ $investigation->payload['impression'] ?? '—' }}
@else
No investigation recorded.
@endif
Diagnosis & plan
@if ($plan)
- Diagnosis
- {{ $plan->payload['diagnosis'] ?? '—' }}
- Plan
- {{ $plan->payload['plan'] ?? '—' }}
- Medications
- {{ $plan->payload['medications'] ?? '—' }}
- Follow-up
- {{ $plan->payload['follow_up'] ?? '—' }}
@else
No plan recorded.
@endif
Procedure
@if ($procedure)
- Procedure
- {{ $procedure->payload['procedure'] ?? '—' }}
- Outcome
- {{ $procedure->payload['outcome'] ?? '—' }}
- Plan
- {{ $procedure->payload['post_procedure_plan'] ?? '—' }}
@else
No procedure recorded.
@endif