@php $steps = [ ['icon' => 'fa-cart-shopping', 'title' => 'Purchase Card', 'desc' => 'Buy a personalized or non-personalized card from any authorized counter.'], ['icon' => 'fa-wallet', 'title' => 'Recharge Card', 'desc' => 'Load balance via bank, wallet, QR, or online portal.'], ['icon' => 'fa-arrow-right-to-bracket', 'title' => 'Tap In', 'desc' => 'Tap your card on the reader as you board the bus.'], ['icon' => 'fa-bus', 'title' => 'Travel', 'desc' => 'Ride to your destination — no tickets, no cash needed.'], ['icon' => 'fa-arrow-right-from-bracket', 'title' => 'Tap Out', 'desc' => 'Tap out when you alight; fare is deducted automatically.'], ]; @endphp

How It Works

Five Simple Steps to Cashless Travel

@foreach ($steps as $i => $step)
Step {{ $i + 1 }}

{{ $step['title'] }}

{{ $step['desc'] }}

@endforeach