@php $rewards = [ ['icon' => 'fa-graduation-cap', 'title' => 'Student Discount', 'desc' => 'Verified students save on every fare, automatically applied at tap-in.', 'color' => 'primary'], ['icon' => 'fa-person-cane', 'title' => 'Senior Citizen Discount', 'desc' => 'Concessional rates for senior citizens on every partner route.', 'color' => 'secondary'], ['icon' => 'fa-users', 'title' => 'Referral Rewards', 'desc' => 'Invite a friend to Yatra Card — you both get NPR 50 in ride credit.', 'color' => 'accent'], ['icon' => 'fa-handshake', 'title' => 'Partner Offers', 'desc' => 'Exclusive discounts at partner shops, cafes, and mobile top-up providers.', 'color' => 'primary'], ['icon' => 'fa-coins', 'title' => 'Loyalty Points', 'desc' => 'Earn a point on every tap; redeem points for free rides after 100 trips.', 'color' => 'secondary'], ['icon' => 'fa-bolt', 'title' => 'Early Recharge Bonus', 'desc' => 'Top up NPR 1,000 or more in one go and get a small ride-credit bonus.', 'color' => 'accent'], ]; @endphp @component('layouts.app', [ 'title' => 'Rewards & Discounts', 'metaDescription' => 'Yatra Card rewards — student and senior citizen discounts, referral credit, loyalty points, and partner offers.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Wallet & Rewards', 'title' => 'Ride More, Save More', 'subtitle' => 'Yatra Card rewards the people who use it every day — students, seniors, and loyal commuters alike.', ])
@foreach ($rewards as $i => $reward)

{{ $reward['title'] }}

{{ $reward['desc'] }}

@endforeach

Loyalty Points

Every Tap Earns You Something

You're already riding. Yatra Points just makes sure it adds up to something.

62 / 100 taps Next reward: Free ride

Rider Tiers

The More You Ride, The More You Get

@foreach ([ ['tier' => 'Bronze', 'range' => '0 – 99 taps', 'perk' => 'Standard fares, full app access', 'active' => false, 'icon' => 'fa-medal', 'color' => 'text-amber-600 bg-amber-500/10'], ['tier' => 'Silver', 'range' => '100 – 299 taps', 'perk' => '1 free ride every 100 taps', 'active' => true, 'icon' => 'fa-medal', 'color' => 'text-slate-500 bg-slate-400/10'], ['tier' => 'Gold', 'range' => '300+ taps', 'perk' => 'Priority support + partner offers', 'active' => false, 'icon' => 'fa-medal', 'color' => 'text-yellow-500 bg-yellow-400/10'], ] as $tier)
@if ($tier['active']) Your Tier @endif

{{ $tier['tier'] }}

{{ $tier['range'] }}

{{ $tier['perk'] }}

@endforeach

Referral Program

Give NPR 50, Get NPR 50

Share your code — when a friend applies for their first card, you both get ride credit.

@include('partials.home.cta') @endcomponent