Back
{{ $patient->fullName() }}
{{ $patient->patient_number }}
· Visit #{{ $visit->id }}
· Stage {{ $visit->specialty_stage ?? '—' }}
· {{ $visit->checked_in_at?->format('d M Y H:i') ?? '—' }}
Visual acuity / refraction
@if ($refraction)
- VA OD / OS
- {{ $refraction->payload['va_od'] ?? '—' }} / {{ $refraction->payload['va_os'] ?? '—' }}
- Near VA
- {{ $refraction->payload['va_od_near'] ?? '—' }} / {{ $refraction->payload['va_os_near'] ?? '—' }}
- OD Rx
-
Sph {{ $refraction->payload['sphere_od'] ?? '—' }}
Cyl {{ $refraction->payload['cylinder_od'] ?? '—' }}
Axis {{ $refraction->payload['axis_od'] ?? '—' }}
- OS Rx
-
Sph {{ $refraction->payload['sphere_os'] ?? '—' }}
Cyl {{ $refraction->payload['cylinder_os'] ?? '—' }}
Axis {{ $refraction->payload['axis_os'] ?? '—' }}
- Add / PD
- {{ $refraction->payload['add'] ?? '—' }} / {{ $refraction->payload['pd'] ?? '—' }}
- Notes
- {{ $refraction->payload['notes'] ?? '—' }}
@else
No refraction recorded.
@endif
Examination
@if ($exam)
- Chief complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- History
- {{ $exam->payload['history'] ?? '—' }}
- IOP OD / OS
- {{ $exam->payload['iop_od'] ?? '—' }} / {{ $exam->payload['iop_os'] ?? '—' }}
- Pupils
- {{ $exam->payload['pupils'] ?? '—' }}
- Anterior segment
- {{ $exam->payload['anterior_segment'] ?? '—' }}
- Fundus
- {{ $exam->payload['fundus'] ?? '—' }}
- Findings
- {{ $exam->payload['findings'] ?? '—' }}
@else
No examination recorded.
@endif
Investigations
@if ($investigation)
- Modality
- {{ $investigation->payload['modality'] ?? '—' }}
- Eye
- {{ $investigation->payload['eye'] ?? '—' }}
- Findings
- {{ $investigation->payload['findings'] ?? '—' }}
- Impression
- {{ $investigation->payload['impression'] ?? '—' }}
@else
No investigation recorded.
@endif
Diagnosis & plan
@if ($plan)
- Diagnosis
- {{ $plan->payload['diagnosis'] ?? '—' }}
- Laterality
- {{ $plan->payload['laterality'] ?? '—' }}
- Plan
- {{ $plan->payload['plan'] ?? '—' }}
- Medications
- {{ $plan->payload['medications'] ?? '—' }}
- Follow-up
- {{ $plan->payload['follow_up'] ?? '—' }}
@else
No plan recorded.
@endif
Procedure / treatment
@if ($procedure)
- Procedure
- {{ $procedure->payload['procedure'] ?? '—' }}
- Eye
- {{ $procedure->payload['eye'] ?? '—' }}
- Outcome
- {{ $procedure->payload['outcome'] ?? '—' }}
- Post-op plan
- {{ $procedure->payload['post_op_plan'] ?? '—' }}
- Notes
- {{ $procedure->payload['notes'] ?? '—' }}
@else
No procedure recorded.
@endif