Back

{{ $patient->fullName() }}

{{ $patient->patient_number }} · Visit #{{ $visit->id }} · Stage {{ $visit->specialty_stage ?? '—' }}

History

@if($history)
HPI
{{ $history->payload['history'] ?? '—' }}
CKD
{{ $history->payload['ckd_stage'] ?? '—' }}
@else

No history.

@endif

Exam

@if($exam)
Complaint
{{ $exam->payload['chief_complaint'] ?? '—' }}
Fluid
{{ $exam->payload['fluid_status'] ?? '—' }}
@else

No exam.

@endif

Dialysis / labs

@if($dialysis)
Type
{{ $dialysis->payload['session_type'] ?? '—' }}
Notes
{{ $dialysis->payload['notes'] ?? '—' }}
@else

No session.

@endif

Plan

@if($plan)
Diagnosis
{{ $plan->payload['diagnosis'] ?? '—' }}
Plan
{{ $plan->payload['plan'] ?? '—' }}
Outcome
{{ $plan->payload['outcome'] ?? '—' }}
@else

No plan.

@endif