Back
{{ $patient->fullName() }}
{{ $patient->patient_number }} · Visit #{{ $visit->id }} · Stage {{ $visit->specialty_stage ?? '—' }}
History
@if($history)- HPI
- {{ $history->payload['history'] ?? '—' }}
@elseNo history.
@endif
Exam
@if($exam)- Complaint
- {{ $exam->payload['chief_complaint'] ?? '—' }}
- ASA
- {{ $exam->payload['asa_class'] ?? '—' }}
@elseNo exam.
@endif
Investigations
@if($investigation)- Investigation
- {{ $investigation->payload['investigation'] ?? '—' }}
- Findings
- {{ $investigation->payload['findings'] ?? '—' }}
@elseNo investigation.
@endif
Consent / plan
@if($plan)- Diagnosis
- {{ $plan->payload['diagnosis'] ?? '—' }}
- Procedure
- {{ $plan->payload['proposed_procedure'] ?? '—' }}
- Consent
- {{ !empty($plan->payload['consent_obtained']) ? 'Yes' : 'No' }}
@elseNo plan.
@endif
Procedure
@if($procedure)- Procedure
- {{ $procedure->payload['procedure'] ?? '—' }}
- Outcome
- {{ $procedure->payload['outcome'] ?? '—' }}
@elseNo procedure.
@endif
Post-op
@if($postop)- Progress
- {{ $postop->payload['progress'] ?? '—' }}
- Outcome
- {{ $postop->payload['outcome'] ?? '—' }}
@elseNo post-op.
@endif