@component('layouts.app', [ 'title' => 'Features', 'metaDescription' => 'Every Yatra Card feature explained — tap in/out, NFC, discounts, card controls, and digital transaction history.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Product', 'title' => 'Everything Your Card Can Do', 'subtitle' => 'From the first tap to full account control, here is every feature built into Yatra Card.', ]) @include('partials.home.features')

Card Controls

You're Always In Control

@foreach ([ ['icon' => 'fa-snowflake', 'title' => 'Freeze / Unfreeze', 'desc' => 'Instantly pause your card from the app if it goes missing, and unfreeze it the moment you find it.'], ['icon' => 'fa-chart-line', 'title' => 'Spending Insights', 'desc' => 'See a breakdown of fares by route, week, and month — understand exactly where your travel budget goes.'], ['icon' => 'fa-bell', 'title' => 'Smart Notifications', 'desc' => 'Get an alert on every tap, every recharge, and whenever your balance drops below a threshold you set.'], ] as $i => $item)

{{ $item['title'] }}

{{ $item['desc'] }}

@endforeach

Availability

What's Included on Each Card

@foreach ([ ['label' => 'Tap In / Tap Out', 'p' => true, 'n' => true], ['label' => 'Digital Transaction History', 'p' => true, 'n' => true], ['label' => 'Balance Inquiry', 'p' => true, 'n' => true], ['label' => 'Freeze / Unfreeze Card', 'p' => true, 'n' => false], ['label' => 'Student / Senior Discounts', 'p' => true, 'n' => false], ['label' => 'Lost Card Recovery', 'p' => true, 'n' => false], ['label' => 'Direct Bank Recharge', 'p' => true, 'n' => false], ['label' => 'Spending Insights', 'p' => true, 'n' => false], ] as $row) @endforeach
Feature Personalized Non-Personalized
{{ $row['label'] }}
@include('partials.home.cta') @endcomponent