Handovers / {{ $statuses[$handover->status] ?? $handover->status }}

{{ $shiftCodes[$handover->from_shift] ?? ($handover->from_shift ?: 'Shift') }} → {{ $shiftCodes[$handover->to_shift] ?? ($handover->to_shift ?: 'Shift') }}

{{ ($handover->handed_over_at ?? $handover->created_at)?->format('d M Y H:i') }} @if ($handover->received_by) · Received by {{ $handover->received_by }} @endif

Situation

{{ $handover->situation ?: '—' }}

Background

{{ $handover->background ?: '—' }}

Assessment

{{ $handover->assessment ?: '—' }}

Recommendation

{{ $handover->recommendation ?: '—' }}

Patient summaries

@forelse ($handover->patient_summaries ?? [] as $summary)

{{ $summary['patient_name'] ?? 'Patient' }} @if (!empty($summary['bed'])) · {{ $summary['bed'] }} @endif

{{ $summary['note'] ?: '—' }}

@empty

No patient lines.

@endforelse
@if ($canWrite)
@csrf @foreach ($handover->patient_summaries ?? [] as $i => $summary) @endforeach
@endif