@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.
| 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) @endif |
| No declined patients. | ||||