@extends('layouts.admin') @section('title', 'In-Room Decline & Follow-Up Tracker') @section('content')

Prospective patients who declined CoCM enrollment during the in-room discussion. Each gets a 30-day soft follow-up so they don't fall out of care tracking.

@forelse ($patients as $patient) @php $task = $patient->followUpTasks->first(); @endphp @empty @endforelse
Patient Decline reason Follow-up due Status
{{ $patient->user->name ?? '—' }} {{ $patient->decline_reason ?? '—' }} @if ($task) {{ $task->due_at->format('M j, Y') }} @if (!$task->completed_at && $task->due_at->isPast()) (overdue) @elseif (!$task->completed_at) ({{ now()->diffInDays($task->due_at) }}d left) @endif @else — @endif @if (!$task) No task @elseif ($task->completed_at) Completed @else Pending @endif @if ($task && !$task->completed_at)
@csrf
@endif
No declined patients.
{{ $patients->links() }}
@endsection