@php
$facilities = [
[
'title' => 'Library & e-Library',
'icon' => 'fa-books',
'desc' => 'Resourceful physical books, references, magazines, journals, alongside web research terminals.',
'route' => 'facilities.library'
],
[
'title' => 'Advanced Laboratories',
'icon' => 'fa-flask',
'desc' => 'State-of-the-art physics, chemistry, biology, math, social sciences, and high-speed computer labs.',
'route' => 'facilities.laboratories'
],
[
'title' => 'Hostel & Cafeteria',
'icon' => 'fa-hotel',
'desc' => 'Homely boarding hostels for boys and girls, paired with an hygienic cafeteria serving fresh foods.',
'route' => 'facilities.hostel-cafeteria'
],
[
'title' => 'Sports & ECA Division',
'icon' => 'fa-basketball-hoop',
'desc' => 'Indoor/outdoor table tennis, basketball, badminton, and volleyball courts to foster physical development.',
'route' => 'facilities.sports-eca'
],
[
'title' => 'Safe Transportation',
'icon' => 'fa-bus-school',
'desc' => 'Reliable and safe bus routes operating across different locations of Pokhara valley at reasonable charges.',
'route' => 'facilities.transportation'
]
];
@endphp
@foreach($facilities as $fac)
@endforeach