@php $intake = $childWelfareIntake?->payload ?? []; $assessment = $childWelfareAssessment?->payload ?? []; $plan = $childWelfarePlan?->payload ?? []; @endphp

Child Welfare overview

Intake, assessment, care plan, and follow-up for this CWC episode. Sensitive notes use the same clinical-record access controls as other specialty modules.

Visit reason

{{ $intake['visit_reason'] ?? '—' }}

{{ $intake['caregiver'] ?? '—' }}

Growth / assessment

{{ $assessment['growth_status'] ?? 'Not assessed' }}

@if (! empty($assessment['weight_kg'])) {{ $assessment['weight_kg'] }} kg @if (! empty($assessment['age_months'])) · {{ $assessment['age_months'] }} mo @endif @else — @endif

Care plan

{{ \Illuminate\Support\Str::limit($plan['goals'] ?? 'Not set', 40) }}

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

Interval history
{{ $intake['history'] ?? '—' }}
Assessment summary
{{ $assessment['assessment_summary'] ?? '—' }}
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