@php $hist = $pediatricsHistory?->payload ?? []; $exam = $pediatricsExam?->payload ?? []; $plan = $pediatricsPlan?->payload ?? []; @endphp

Pediatrics overview

History, growth / exam, investigations, and care plan for this episode.

Complaint

{{ $exam['chief_complaint'] ?? '—' }}

Growth {{ $exam['growth_concern'] ?? '—' }}

Growth

{{ $exam['weight_kg'] ?? '—' }} kg · {{ $exam['height_cm'] ?? '—' }} cm

HC {{ $exam['head_circumference_cm'] ?? '—' }} · Temp {{ $exam['temperature_c'] ?? '—' }}°C

Diagnosis / plan

{{ $plan['diagnosis'] ?? 'Not set' }}

{{ $plan['follow_up'] ?? '—' }}

History
{{ $hist['history'] ?? '—' }}
Plan
{{ $plan['plan'] ?? '—' }}
Queue
{{ $workspaceVisit->appointment?->queue_ticket_number ?? '—' }} @if ($workspaceVisit->appointment?->queue_ticket_status) ({{ $workspaceVisit->appointment->queue_ticket_status }}) @endif
Checked in
{{ $workspaceVisit->checked_in_at?->format('d M Y H:i') ?? '—' }}
@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

{{ $alert['message'] ?? '' }}

@endforeach
@endif