@php $transactions = [ ['icon' => 'fa-bus', 'label' => 'Route 5 Tap-In', 'time' => 'Today, 8:42 AM', 'amount' => '-NPR 25', 'positive' => false], ['icon' => 'fa-wallet', 'label' => 'Recharge via eSewa', 'time' => 'Today, 7:10 AM', 'amount' => '+NPR 500', 'positive' => true], ['icon' => 'fa-bus', 'label' => 'Route 12 Tap-In', 'time' => 'Yesterday, 6:15 PM', 'amount' => '-NPR 30', 'positive' => false], ['icon' => 'fa-bus', 'label' => 'Route 12 Tap-Out', 'time' => 'Yesterday, 5:40 PM', 'amount' => '-NPR 0', 'positive' => false], ['icon' => 'fa-building-columns', 'label' => 'Bank Transfer Recharge', 'time' => 'Mon, 9:00 AM', 'amount' => '+NPR 1,000', 'positive' => true], ]; $quickActions = [ ['icon' => 'fa-wallet', 'label' => 'Top Up'], ['icon' => 'fa-clock-rotate-left', 'label' => 'History'], ['icon' => 'fa-rotate', 'label' => 'Auto Reload'], ['icon' => 'fa-qrcode', 'label' => 'Scan & Pay'], ]; @endphp @component('layouts.app', [ 'title' => 'Dashboard', 'metaDescription' => 'A preview of the Yatra Card rider dashboard — balance, trip history, and card controls.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Account', 'title' => 'Welcome Back, Anita', 'subtitle' => 'This is a preview of the Yatra Card dashboard. Apply for a card to unlock your real account.', ])

Notifications

Yatra Card

Available Balance

NPR 2,450

YC •••• •••• 8821

Card Frozen

@foreach ($quickActions as $action) @endforeach

This Month's Spend

NPR 1,840

12% vs last month
@foreach ([40, 65, 50, 80, 55, 90, 70] as $bar)
@endforeach
MonTueWedThuFriSatSun

Recent Transactions

@foreach ($transactions as $tx)

{{ $tx['label'] }}

{{ $tx['time'] }}

{{ $tx['amount'] }}
@endforeach

Full Trip History

@foreach (['all' => 'All', 'trip' => 'Trips', 'recharge' => 'Recharges'] as $key => $label) @endforeach

This is a preview with sample data. Apply for a Yatra Card to create your real account.

@endcomponent