@extends('layouts.admin') @section('title', 'Complete Warm Handoff') @section('content') @php $patientName = $session->patientProfile?->user?->name ?? 'Patient'; $pcpName = $session->initiatedBy?->name ?? 'PCP'; $bhcmName = $session->bhcm?->name ?? 'BHCM'; $durationMinutes = $session->duration_seconds !== null ? max(1, (int) ceil($session->duration_seconds / 60)) : null; @endphp

Warm Handoff

Complete handoff for {{ $patientName }}

Record the clinical outcome, next action, safety review, and billing-ready time log details.

Open patient chart
@if ($errors->any())

Please review the highlighted fields.

@endif

Patient

{{ $patientName }}

PCP

{{ $pcpName }}

BHCM

{{ $bhcmName }}

Video Time

{{ $durationMinutes ? $durationMinutes.' min' : 'Not captured' }}

@if ($session->completed_at)
This warm handoff was completed by {{ $session->completedBy?->name ?? 'care team' }} on {{ $session->completed_at->format('M j, Y g:ia') }}. You can update the completion details below.
@endif
@csrf

Clinical completion

Capture what happened and what should happen next.

Required
@endsection