Back
{{ $patient->fullName() }}
{{ $patient->patient_number }}
· Visit #{{ $visit->id }}
· Stage {{ $visit->specialty_stage ?? '—' }}
· {{ $visit->checked_in_at?->format('d M Y H:i') ?? '—' }}
Intake / history
@if ($intake)
- Visit reason
- {{ $intake->payload['visit_reason'] ?? '—' }}
- Caregiver
- {{ $intake->payload['caregiver'] ?? '—' }}
- History
- {{ $intake->payload['history'] ?? '—' }}
- Immunization
- {{ $intake->payload['immunization_status'] ?? '—' }}
- Feeding
- {{ $intake->payload['feeding'] ?? '—' }}
- Safeguarding
- {{ $intake->payload['safeguarding_notes'] ?? '—' }}
@else
No intake recorded.
@endif
Assessment
@if ($assessment)
- Age (months)
- {{ $assessment->payload['age_months'] ?? '—' }}
- Weight (kg)
- {{ $assessment->payload['weight_kg'] ?? '—' }}
- Growth status
- {{ $assessment->payload['growth_status'] ?? '—' }}
- Nutrition risk
- {{ $assessment->payload['nutrition_risk'] ?? '—' }}
- Safeguarding
- {{ $assessment->payload['safeguarding_flag'] ?? '—' }}
- Exam
- {{ $assessment->payload['exam_findings'] ?? '—' }}
- Summary
- {{ $assessment->payload['assessment_summary'] ?? '—' }}
@else
No assessment recorded.
@endif
Care plan
@if ($plan)
- Goals
- {{ $plan->payload['goals'] ?? '—' }}
- Interventions
- {{ $plan->payload['interventions'] ?? '—' }}
- Counseling
- {{ $plan->payload['counseling'] ?? '—' }}
- Follow-up
- {{ $plan->payload['follow_up'] ?? '—' }}
@else
No care plan recorded.
@endif
Intervention / follow-up
@if ($followup)
- Review type
- {{ $followup->payload['review_type'] ?? '—' }}
- Interventions
- {{ $followup->payload['interventions_delivered'] ?? '—' }}
- Outcome
- {{ $followup->payload['outcome'] ?? '—' }}
- Next visit
- {{ $followup->payload['next_visit'] ?? '—' }}
@else
No follow-up recorded.
@endif