Back

{{ $patient->fullName() }}

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

History

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

No history recorded.

@endif

Staging / exam

@if ($staging)
Diagnosis
{{ $staging->payload['diagnosis'] ?? '—' }}
Stage
{{ $staging->payload['stage'] ?? '—' }}
ECOG
{{ $staging->payload['performance_status'] ?? '—' }}
@else

No staging recorded.

@endif

Investigations

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

No investigation recorded.

@endif

Plan

@if ($plan)
Diagnosis
{{ $plan->payload['diagnosis'] ?? '—' }}
Plan
{{ $plan->payload['plan'] ?? '—' }}
@else

No plan recorded.

@endif

Treatment

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

No treatment recorded.

@endif