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 cardiac
- {{ $history->payload['past_cardiac'] ?? '—' }}
- Risk factors
- {{ $history->payload['risk_factors'] ?? '—' }}
- Medications
- {{ $history->payload['medications'] ?? '—' }}
@else
No history recorded.
@endif
Exam / ECG
@if ($exam)
- Complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- NYHA
- {{ $exam->payload['nyha_class'] ?? '—' }}
- BP / HR
- {{ $exam->payload['bp'] ?? '—' }} · {{ $exam->payload['hr'] ?? '—' }}
- ECG
- {{ $exam->payload['ecg_findings'] ?? '—' }}
- Exam
- {{ $exam->payload['exam_findings'] ?? '—' }}
@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