Back

{{ $patient->fullName() }}

{{ $patient->patient_number }} · Visit #{{ $visit->id }} · Stage {{ $visit->specialty_stage ?? '—' }}

History

@if($history)
HPI
{{ $history->payload['history'] ?? '—' }}
@else

No history.

@endif

Exam

@if($exam)
Complaint
{{ $exam->payload['chief_complaint'] ?? '—' }}
ASA
{{ $exam->payload['asa_class'] ?? '—' }}
@else

No exam.

@endif

Investigations

@if($investigation)
Investigation
{{ $investigation->payload['investigation'] ?? '—' }}
Findings
{{ $investigation->payload['findings'] ?? '—' }}
@else

No investigation.

@endif

Consent / plan

@if($plan)
Diagnosis
{{ $plan->payload['diagnosis'] ?? '—' }}
Procedure
{{ $plan->payload['proposed_procedure'] ?? '—' }}
Consent
{{ !empty($plan->payload['consent_obtained']) ? 'Yes' : 'No' }}
@else

No plan.

@endif

Procedure

@if($procedure)
Procedure
{{ $procedure->payload['procedure'] ?? '—' }}
Outcome
{{ $procedure->payload['outcome'] ?? '—' }}
@else

No procedure.

@endif

Post-op

@if($postop)
Progress
{{ $postop->payload['progress'] ?? '—' }}
Outcome
{{ $postop->payload['outcome'] ?? '—' }}
@else

No post-op.

@endif