@php $hist = $oncologyHistory?->payload ?? []; $staging = $oncologyStaging?->payload ?? []; $plan = $oncologyPlan?->payload ?? []; @endphp

Oncology overview

History, staging, investigations, plan, and treatment for this episode.

Diagnosis

{{ $staging['diagnosis'] ?? ($plan['diagnosis'] ?? '—') }}

Stage {{ $staging['stage'] ?? '—' }}

ECOG

{{ $staging['performance_status'] ?? '—' }}

{{ $plan['intent'] ?? '—' }}

Plan

{{ \Illuminate\Support\Str::limit($plan['plan'] ?? 'Not set', 40) }}

{{ $plan['follow_up'] ?? '—' }}

History
{{ $hist['history'] ?? '—' }}
Queue
{{ $workspaceVisit->appointment?->queue_ticket_number ?? '—' }}
@if (! empty($clinicalAlerts))

Alerts

@foreach ($clinicalAlerts as $alert)

{{ $alert['message'] ?? '' }}

@endforeach
@endif