@php $route = '#'; if (isAdmin()) { $route = route('admin.dashboard'); } if (isInstructor()) { $route = route('instructor.dashboard'); } if (isOrganization()) { $route = route('organization.dashboard'); } if (isStudent()) { $route = route('student.dashboard'); } $backUrl = $backUrl ?? ''; $pageTo = $pageTo ?? ''; @endphp