@extends('layouts.mobile') @section('title', 'Virtual Cards') @section('content')
Complete your identity verification to request virtual cards.
Complete KYCTotal Cards
{{ $cards->count() ?? 0 }}
Active Cards
{{ $cards->where('status', 'active')->count() ?? 0 }}
{{ $card->card_type }} Card
{{ $card->currency }}
•••• •••• •••• {{ substr($card->masked_pan ?? '0000', -4) }}
Available Balance
{{ $card->currency }} {{ number_format($card->balance ?? 0, 2) }}
Expires
{{ $card->expires_at ? \Carbon\Carbon::parse($card->expires_at)->format('m/y') : '--/--' }}
Daily Limit
{{ $card->currency }} {{ number_format($card->daily_limit ?? 0, 0) }}
Monthly Limit
{{ $card->currency }} {{ number_format($card->monthly_limit ?? 0, 0) }}
Brand
{{ ucfirst($card->brand ?? 'Visa') }}
No virtual cards yet
@if(auth()->user()->hasCompletedKyc())Request your first virtual card to start making online payments
@elseComplete KYC verification to request virtual cards
Complete KYC @endif