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'] ?? '—' }}
- Past skin
- {{ $history->payload['past_skin'] ?? '—' }}
- Medications
- {{ $history->payload['medications'] ?? '—' }}
- Allergies
- {{ $history->payload['allergies'] ?? '—' }}
@else
No history recorded.
@endif
Skin exam
@if ($exam)
- Complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- Urgency
- {{ $exam->payload['urgency'] ?? '—' }}
- Distribution
- {{ $exam->payload['distribution'] ?? '—' }}
- Morphology
- {{ $exam->payload['morphology'] ?? '—' }}
- Dermoscopy
- {{ $exam->payload['dermoscopy'] ?? '—' }}
@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'] ?? '—' }}
- Medications
- {{ $plan->payload['medications'] ?? '—' }}
- 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