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'] ?? '—' }}
Birth history
{{ $history->payload['birth_history'] ?? '—' }}
Past medical
{{ $history->payload['past_medical'] ?? '—' }}
Feeding
{{ $history->payload['feeding'] ?? '—' }}
Medications
{{ $history->payload['medications'] ?? '—' }}
@else

No history recorded.

@endif

Exam / growth

@if ($exam)
Complaint
{{ $exam->payload['chief_complaint'] ?? '—' }}
Weight / height
{{ $exam->payload['weight_kg'] ?? '—' }} kg · {{ $exam->payload['height_cm'] ?? '—' }} cm
Growth concern
{{ $exam->payload['growth_concern'] ?? '—' }}
Immunization
{{ $exam->payload['immunization_status'] ?? '—' }}
Exam
{{ $exam->payload['examination'] ?? '—' }}
@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

Treatment / immunization

@if ($treatment)
Treatment
{{ $treatment->payload['treatment'] ?? '—' }}
Outcome
{{ $treatment->payload['outcome'] ?? '—' }}
Plan
{{ $treatment->payload['post_treatment_plan'] ?? '—' }}
@else

No treatment recorded.

@endif