Back
{{ $patient->fullName() }}
{{ $patient->patient_number }}
· Visit #{{ $visit->id }}
· Stage {{ $visit->specialty_stage ?? '—' }}
· {{ $visit->checked_in_at?->format('d M Y H:i') ?? '—' }}
ANC history
@if ($history)
- G / P
- {{ $history->payload['gravida'] ?? '—' }} / {{ $history->payload['para'] ?? '—' }}
- GA / EDD
- {{ $history->payload['gestational_age_weeks'] ?? '—' }} weeks · {{ $history->payload['edd'] ?? '—' }}
- LMP
- {{ $history->payload['lmp'] ?? '—' }}
- Obstetric history
- {{ $history->payload['obstetric_history'] ?? '—' }}
- Medications
- {{ $history->payload['medications'] ?? '—' }}
@else
No ANC history recorded.
@endif
Obstetric exam
@if ($exam)
- BP / pulse
- {{ $exam->payload['bp'] ?? '—' }} · {{ $exam->payload['pulse'] ?? '—' }}
- Fundal height
- {{ $exam->payload['fundal_height'] ?? '—' }} cm
- Presentation
- {{ $exam->payload['presentation'] ?? '—' }}
- Urine
- {{ $exam->payload['urine'] ?? '—' }}
- Danger signs
- {{ $exam->payload['danger_signs'] ?? '—' }}
- Findings
- {{ $exam->payload['findings'] ?? '—' }}
@else
No obstetric exam recorded.
@endif
Fetal notes
@if ($fetal)
- FHR
- {{ $fetal->payload['fetal_heart_rate'] ?? '—' }} bpm
- Movements
- {{ $fetal->payload['fetal_movements'] ?? '—' }}
- Presentation
- {{ $fetal->payload['presentation'] ?? '—' }}
- Notes
- {{ $fetal->payload['notes'] ?? '—' }}
@else
No fetal notes recorded.
@endif
Investigations
@if ($investigation)
- Investigation
- {{ $investigation->payload['modality'] ?? '—' }}
- Findings
- {{ $investigation->payload['findings'] ?? '—' }}
- Impression
- {{ $investigation->payload['impression'] ?? '—' }}
@else
No investigation recorded.
@endif
Care plan
@if ($plan)
- Risk
- {{ $plan->payload['risk_category'] ?? '—' }}
- Plan
- {{ $plan->payload['plan'] ?? '—' }}
- Medications
- {{ $plan->payload['medications'] ?? '—' }}
- Follow-up
- {{ $plan->payload['follow_up'] ?? '—' }}
@else
No care plan recorded.
@endif
Delivery / postnatal
@if ($postnatal)
- Episode
- {{ $postnatal->payload['episode_type'] ?? '—' }}
- Delivery mode
- {{ $postnatal->payload['delivery_mode'] ?? '—' }}
- Outcome
- {{ $postnatal->payload['outcome'] ?? '—' }}
- Maternal
- {{ $postnatal->payload['maternal_condition'] ?? '—' }}
- Baby
- {{ $postnatal->payload['baby_condition'] ?? '—' }}
- Plan
- {{ $postnatal->payload['plan'] ?? '—' }}
@else
No postnatal note recorded.
@endif