Reschedule Appointment
{{ $currentDate ? date('d M Y', strtotime($currentDate)) : '-' }} · {{ $currentTime ? date('g:i A', strtotime($currentTime)) : '-' }}
@php $role = session('login_role'); $rolePath = $role === 'staff' ? 'staff' : 'student'; $portal = $role === 'staff' ? 'STAFF PORTAL' : 'STUDENT PORTAL'; $availableDates = $availableDates ?? []; $year = date('Y', strtotime($monthStart)); $month = date('m', strtotime($monthStart)); $monthName = date('F Y', strtotime($monthStart)); $daysInMonth = date('t', strtotime($monthStart)); $firstDay = date('N', strtotime($year . '-' . $month . '-01')); $currentDate = $appointment['appointment_date'] ?? null; $currentTime = $appointment['appointment_time'] ?? null; @endphp
{{ $currentDate ? date('d M Y', strtotime($currentDate)) : '-' }} · {{ $currentTime ? date('g:i A', strtotime($currentTime)) : '-' }}