@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
{{ translate('Our Team Member') }}

{{ translate('Meet Our Best') }} {{ translate('Instructors') }}

@if ($instructorRoute && $instructorBtnText) @endif
@foreach ($instructors as $instructor) @endforeach