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'] ?? '—' }}
Trying (mo)
{{ $history->payload['trying_months'] ?? '—' }}
Obstetric
{{ $history->payload['obstetric_history'] ?? '—' }}
Partner
{{ $history->payload['partner_notes'] ?? '—' }}
@else

No history recorded.

@endif

Exam

@if ($exam)
Complaint
{{ $exam->payload['chief_complaint'] ?? '—' }}
Priority
{{ $exam->payload['priority'] ?? '—' }}
Cycle day
{{ $exam->payload['cycle_day'] ?? '—' }}
BMI
{{ $exam->payload['bmi'] ?? '—' }}
Exam
{{ $exam->payload['exam_findings'] ?? '—' }}
@else

No exam recorded.

@endif

Investigations

@if ($investigation)
Investigation
{{ $investigation->payload['modality'] ?? '—' }}
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

Cycle / procedure note

@if ($cycle)
Cycle type
{{ $cycle->payload['cycle_type'] ?? '—' }}
Outcome
{{ $cycle->payload['outcome'] ?? '—' }}
Notes
{{ $cycle->payload['notes'] ?? '—' }}
Next steps
{{ $cycle->payload['next_steps'] ?? '—' }}
@else

No cycle note recorded.

@endif