@php // `motion` maps each card to a distinct hand-tuned CSS animation in // app.css (feature-icon--) — no two features share the same // gesture, so the grid doesn't read as one animation copy-pasted twelve // times. See resources/css/app.css "FEATURE ICON MOTION". $tabs = [ 'travel' => [ 'label' => 'Everyday Travel', 'features' => [ ['icon' => 'fa-right-left', 'motion' => 'tap', 'title' => 'Tap In / Tap Out', 'desc' => 'Simple boarding and alighting — just tap your card at the terminal.'], ['icon' => 'fa-wifi', 'motion' => 'nfc', 'title' => 'NFC Technology', 'desc' => 'Contactless, chip-based communication for instant, reliable reads.'], ['icon' => 'fa-bolt', 'motion' => 'bolt', 'title' => 'Instant Fare Deduction', 'desc' => 'Fare is calculated and deducted automatically in under a second.'], ['icon' => 'fa-route', 'motion' => 'route', 'title' => 'Multi-Route Support', 'desc' => 'One card works across all partner buses and routes.'], ], ], 'account' => [ 'label' => 'Account & Money', 'features' => [ ['icon' => 'fa-wallet', 'motion' => 'wallet', 'title' => 'Recharge Easily', 'desc' => 'Top up via bank, mobile wallet, QR, or authorized counters.'], ['icon' => 'fa-file-invoice', 'motion' => 'history', 'title' => 'Digital Transaction History', 'desc' => 'View every trip and recharge in your app, anytime.'], ['icon' => 'fa-magnifying-glass-dollar', 'motion' => 'search', 'title' => 'Balance Inquiry', 'desc' => 'Check your remaining balance anytime via app, SMS, or terminal.'], ['icon' => 'fa-ticket', 'motion' => 'ticket', 'title' => 'Electronic Ticket', 'desc' => 'No paper tickets — your card is proof of fare payment.'], ], ], 'security' => [ 'label' => 'Security & Discounts', 'features' => [ ['icon' => 'fa-lock', 'motion' => 'lock', 'title' => 'Secure Transactions', 'desc' => 'Every tap is encrypted end-to-end with bank-grade security.'], ['icon' => 'fa-shield-halved', 'motion' => 'shield', 'title' => 'Lost Card Protection', 'desc' => 'Freeze your card instantly and recover your balance if lost.'], ['icon' => 'fa-graduation-cap', 'motion' => 'grad', 'title' => 'Student Discount', 'desc' => 'Verified students get reduced fares automatically applied.'], ['icon' => 'fa-person-cane', 'motion' => 'cane', 'title' => 'Senior Citizen Discount', 'desc' => 'Special concessional rates for senior citizens on every trip.'], ], ], ]; @endphp

Features

Everything You Need for Cashless Travel

@foreach ($tabs as $key => $group) @endforeach
@foreach ($tabs as $key => $group)
@foreach ($group['features'] as $i => $feature)

{{ $feature['title'] }}

{{ $feature['desc'] }}

@endforeach
@endforeach