@if ($patientHeader)
@include('care.partials.patient-header', [
'patient' => $patientHeader['patient'],
'visit' => $patientHeader['visit'] ?? null,
'appointment' => $patientHeader['appointment'] ?? null,
'outstandingMinor' => $patientHeader['outstanding_minor'] ?? 0,
'allergies' => $patientHeader['allergies'] ?? [],
'insuranceSummary' => $patientHeader['insurance_summary'] ?? null,
'emergency' => $patientHeader['emergency'] ?? false,
'clinicalAlerts' => $patientHeader['clinical_alerts'] ?? ($clinicalAlerts ?? []),
'currency' => $currency ?? 'GHS',
])
@endif
@if (! $workspaceVisit)
Open a visit from the queue, or call next from the waiting list.No open visit selected
Current invoice {{ $workspaceVisit->bill->invoice_number }}
Specialty documents attach to the patient chart for this episode.
{{ $doc->original_name }}
{{ $doc->document_type }} · {{ $doc->created_at?->format('d M Y H:i') }}
Clinical alerts
@foreach ($clinicalAlerts as $alert){{ $alert['message'] ?? '' }}
@endforeach