@php $faqs = [ ['q' => 'What is Yatra Card?', 'a' => 'Yatra Card is an NFC-based digital transport payment card that lets you pay bus fares instantly by tapping the card at the terminal — no cash needed.', 'cat' => 'Card'], ['q' => 'How do I get a Yatra Card?', 'a' => 'You can apply for a Personalized card online or purchase a Non-Personalized card instantly at any authorized counter or partner outlet.', 'cat' => 'Card'], ['q' => 'What documents are needed for a Personalized card?', 'a' => 'A copy of your citizenship/ID, a passport-size photo, and a completed KYC form are required for a Personalized card.', 'cat' => 'Card'], ['q' => 'How do I recharge my card?', 'a' => 'You can recharge via bank transfer, debit/credit card, mobile wallets (eSewa, Khalti, IME Pay), QR payment, or at any authorized recharge counter.', 'cat' => 'Recharge'], ['q' => 'Is there a validity period on the card?', 'a' => 'Non-Personalized cards are valid for 3 years from issue. Personalized cards remain valid as long as your account stays active.', 'cat' => 'Card'], ['q' => 'What happens if I lose my card?', 'a' => 'Personalized card holders can freeze the card instantly via the app and recover their remaining balance on a replacement card.', 'cat' => 'Security'], ['q' => 'Can students get a discount?', 'a' => 'Yes — verified students automatically receive discounted fares once their student ID is linked to a Personalized card.', 'cat' => 'Rewards'], ['q' => 'Which buses accept Yatra Card?', 'a' => 'Yatra Card is accepted on all 500+ partner buses across the Kathmandu Valley, with more routes being added regularly.', 'cat' => 'Card'], ['q' => 'Is my payment data secure?', 'a' => 'Yes. All transactions are encrypted end-to-end and processed under NRB-licensed, PCI-compliant payment infrastructure.', 'cat' => 'Security'], ['q' => 'Can I check my balance and history?', 'a' => 'Yes — balance and full transaction history are available anytime through the Yatra Card app or by tapping at any terminal.', 'cat' => 'Account'], ]; $faqCategories = ['All', 'Card', 'Recharge', 'Security', 'Rewards', 'Account']; @endphp

FAQ

Frequently Asked Questions

@foreach ($faqCategories as $cat) @endforeach
@foreach ($faqs as $faq)

{{ $faq['a'] }}

@endforeach