@php $photos = [ ['id' => 201, 'h' => 320, 'category' => 'Buses', 'caption' => 'Morning commute, Ring Road'], ['id' => 202, 'h' => 420, 'category' => 'Kiosks', 'caption' => 'Tap-in terminal, Route 5'], ['id' => 203, 'h' => 280, 'category' => 'Kiosks', 'caption' => 'Card issuance counter'], ['id' => 204, 'h' => 380, 'category' => 'Buses', 'caption' => 'Partner bus fleet'], ['id' => 205, 'h' => 300, 'category' => 'Events', 'caption' => 'Student cardholders'], ['id' => 206, 'h' => 440, 'category' => 'Kiosks', 'caption' => 'Recharge kiosk, New Baneshwor'], ['id' => 207, 'h' => 260, 'category' => 'Buses', 'caption' => 'NFC reader installation'], ['id' => 208, 'h' => 360, 'category' => 'Team', 'caption' => 'Team at the Kathmandu office'], ['id' => 209, 'h' => 300, 'category' => 'Events', 'caption' => 'Senior citizen tap-in'], ['id' => 210, 'h' => 340, 'category' => 'Team', 'caption' => 'Field operations crew'], ['id' => 211, 'h' => 300, 'category' => 'Events', 'caption' => 'Launch day, New Baneshwor'], ['id' => 212, 'h' => 400, 'category' => 'Buses', 'caption' => 'Route 12 fleet inspection'], ]; $categories = ['All', 'Buses', 'Kiosks', 'Team', 'Events']; @endphp @component('layouts.app', [ 'title' => 'Gallery', 'metaDescription' => 'Photos from across the Yatra Card network — buses, kiosks, cardholders, and the team behind it.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Company', 'title' => 'Yatra Card, In the Field', 'subtitle' => 'A look at the buses, terminals, and people that make cashless travel possible every day.', ])
@foreach ($categories as $cat) @endforeach
@foreach ($photos as $photo) @endforeach
@endcomponent