@php $instructors = $instructors ?? []; $totalInstructors = count($instructors); $instructorRoute = ''; $instructorBtnText = ''; if ($totalInstructors > 0) { $instructorRoute = route('instructor.list'); $instructorBtnText = 'More Instructors'; } if (isAdmin() && $totalInstructors < 1) { $instructorRoute = route('instructor.create'); $instructorBtnText = 'Add Instructor'; } @endphp