@php $megaGroups = [ 'product' => [ 'label' => 'Product', 'items' => [ ['icon' => 'fa-route', 'title' => 'How It Works', 'desc' => 'Purchase, recharge, tap in, travel, tap out.', 'href' => route('how-it-works')], ['icon' => 'fa-id-card', 'title' => 'Card Types', 'desc' => 'Personalized vs Non-Personalized cards.', 'href' => route('cards')], ['icon' => 'fa-star', 'title' => 'Features', 'desc' => 'Everything the card can do, in detail.', 'href' => route('features')], ['icon' => 'fa-shield-halved', 'title' => 'Security', 'desc' => 'Encryption, fraud detection, compliance.', 'href' => route('security')], ], 'promo' => ['title' => 'Get Your Card', 'desc' => 'Apply online in minutes.', 'icon' => 'fa-credit-card', 'href' => route('cards')], ], 'wallet' => [ 'label' => 'Wallet & Rewards', 'items' => [ ['icon' => 'fa-wallet', 'title' => 'Recharge & Wallet', 'desc' => 'Top up via bank, wallet, QR, or counter.', 'href' => route('recharge')], ['icon' => 'fa-gift', 'title' => 'Rewards & Discounts', 'desc' => 'Student, senior, and loyalty benefits.', 'href' => route('rewards')], ['icon' => 'fa-mobile-screen', 'title' => 'Mobile App', 'desc' => 'Manage your card from your pocket.', 'href' => route('app')], ], 'promo' => ['title' => 'Yatra Dashboard', 'desc' => 'Preview your account.', 'icon' => 'fa-gauge', 'href' => route('dashboard')], ], 'company' => [ 'label' => 'Company', 'items' => [ ['icon' => 'fa-building', 'title' => 'About Us', 'desc' => 'Our story, mission, and timeline.', 'href' => route('about')], ['icon' => 'fa-briefcase', 'title' => 'Careers', 'desc' => 'Join the team building Yatra Card.', 'href' => route('careers')], ['icon' => 'fa-newspaper', 'title' => 'Blog & News', 'desc' => 'Product updates and transit news.', 'href' => route('blog')], ['icon' => 'fa-images', 'title' => 'Gallery', 'desc' => 'Photos from across the network.', 'href' => route('gallery')], ], ], 'support' => [ 'label' => 'Support', 'items' => [ ['icon' => 'fa-circle-question', 'title' => 'Help Center', 'desc' => 'Guides, tutorials, and live chat.', 'href' => route('help')], ['icon' => 'fa-comments', 'title' => 'FAQ', 'desc' => 'Quick answers to common questions.', 'href' => route('faq')], ['icon' => 'fa-envelope', 'title' => 'Contact Us', 'desc' => 'Offices, phone, email, and map.', 'href' => route('contact')], ['icon' => 'fa-download', 'title' => 'Download Forms', 'desc' => 'KYC forms and user guides.', 'href' => route('download')], ], ], ]; $themeToggleScript = "document.documentElement.classList.toggle('dark');" . "localStorage.setItem('yc-theme', document.documentElement.classList.contains('dark') ? 'dark' : 'light');"; @endphp
YatraCard
Home @foreach ($megaGroups as $key => $group)
@foreach ($group['items'] as $item) {{ $item['title'] }} @endforeach
@endforeach Dashboard