Select Patient
This appointment will be booked under your student profile.
@php $name = $profile['full_name'] ?? 'Student'; $studentId = $profile['upsi_id'] ?? ''; $rolePath = 'student'; $portal = 'STUDENT PORTAL'; $displayRole = 'Student'; $defaultTotal = 100; $total = (float)($allocation['total_amount'] ?? 100); $used = (float)($allocation['used_amount'] ?? 0); $balance = (float)($allocation['balance_amount'] ?? ($total - $used)); $isFullyUsed = $total > 0 && $balance <= 0; @endphp
This appointment will be booked under your student profile.