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'] ?? '—' }}
- Diabetes
- {{ $history->payload['diabetes_history'] ?? '—' }}
- Medications
- {{ $history->payload['medications'] ?? '—' }}
- Allergies
- {{ $history->payload['allergies'] ?? '—' }}
@else
No history recorded.
@endif
Foot exam
@if ($exam)
- Complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- Side
- {{ $exam->payload['side'] ?? '—' }}
- Diabetic risk
- {{ $exam->payload['diabetes'] ?? '—' }}
- Pulses
- {{ $exam->payload['pulses'] ?? '—' }}
- Sensation
- {{ $exam->payload['sensation'] ?? '—' }}
- Ulcer
- {{ $exam->payload['ulcer'] ?? '—' }}
@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'] ?? '—' }}
- Offloading
- {{ $plan->payload['offloading'] ?? '—' }}
- Follow-up
- {{ $plan->payload['follow_up'] ?? '—' }}
@else
No plan recorded.
@endif
Procedure
@if ($procedure)
- Procedure
- {{ $procedure->payload['procedure'] ?? '—' }}
- Outcome
- {{ $procedure->payload['outcome'] ?? '—' }}
- Plan
- {{ $procedure->payload['post_procedure_plan'] ?? '—' }}
@else
No procedure recorded.
@endif