@php $hist = $renalHistory?->payload ?? []; $exam = $renalExam?->payload ?? []; $plan = $renalPlan?->payload ?? []; @endphp

Renal Care overview

History, exam, dialysis/labs, and care plan for this episode.

Complaint

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

Fluid {{ $exam['fluid_status'] ?? '—' }}

CKD / access

{{ $hist['ckd_stage'] ?? '—' }}

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

Diagnosis / plan

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

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

History
{{ $hist['history'] ?? '—' }}
Plan
{{ $plan['plan'] ?? '—' }}
@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

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

@endforeach
@endif