{{ number_format($totalBalanceInUSD, 2) }} {{ $settings->currency }}
Total Balance
@if($cards->isEmpty())
@else
@endif
No Cards Available, Kindly Request for one.
@foreach($cards as $card)
@endforeach
{{ strtoupper(str_replace('_', ' ', $card->card_type)) }}
{{ $card->cardnum }}
{{ $card->fullname }}
{{ $card->month }}/{{ $card->year }}
CVV: {{ $card->ccv }}
Bal: ${{ number_format($card->balance, 2) }}
Recent Card Transactions
View All
@php
use Illuminate\Support\Str;
@endphp
@foreach ($recentTransactions as $tx)
{{-- Transaction Info --}}
@endforeach
{{-- Placeholder Icon for Card Transaction --}}
{{-- Amount --}}
{{ $tx->title }}
{{ $tx->description }}
{{ \Carbon\Carbon::parse($tx->date)->toDayDateTimeString() }}
@if ($tx->amount > 0)
+{{ $settings->currency }} {{ number_format($tx->amount, 2) }}
@else{{ $settings->currency }} {{ number_format($tx->amount, 2) }}
@endifSelect Card Type method
- Visa Prepaid Card (Balance: $2,000)
- Master Prepaid Card (Balance: $20,000)
- Gold Card (Balance: $50,000)