@php $adminName = $admin['full_name'] ?? 'PKU Admin'; @endphp Admin Follow-Up Management

Follow-Up Management

{{ now()->format('D, d M Y') }}
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

Follow-Up Requests

Review doctor follow-up requests and schedule patient appointments

Pending

{{ $pendingCount }}

Scheduled

{{ $scheduledCount }}

Completed

{{ $completedCount }}

Follow-Up Request List

Add Follow-Up
@forelse($followUps as $f) @php $patient = $f['patient'] ?? []; $doctor = $f['doctor'] ?? []; $name = $patient['full_name'] ?? '-'; $initial = strtoupper(substr($name,0,1)); $date = !empty($f['follow_up_date']) ? date('d M Y', strtotime($f['follow_up_date'])) : '-'; $status = strtolower($f['status'] ?? 'pending'); @endphp @empty
No follow-up requests found.
@endforelse