@include('frontend.header')

{{ strtoupper($type) }} Coordinators

@foreach($coordinators as $coordinator) @foreach($coordinator->faculty_ids as $facultyId) @if(isset($faculties[$facultyId])) @php $faculty = $faculties[$facultyId]; $department = $departments[$faculty->department_id] ?? null; $image = $coordinator->images[0] ?? 'assets/img/team/default.jpg'; $image = str_replace('\\', '/', $image); @endphp
{{ $faculty->name }}
{{ $faculty->name }}
{{ $faculty->qualification ?? '' }}
HOD of {{ $department?->department ?? 'N/A' }}
@endif @endforeach @endforeach
{{ strtoupper($type) }} Activities
@foreach($activities as $index => $activity) @endforeach
{{ $index + 1 }}. {{ $activity->title }} @if($activity->is_new) NEW @endif
@php $galleryHash = strtolower($type); if($galleryHash == 'redribbon') $galleryHash = 'red ribbon club'; @endphp
@include('frontend.footer')