@extends('layouts.dash2') @section('title', 'Cards') @section('content')
@include('partials._mobile_header', [ 'title' => 'Virtual Cards', 'showBackButton' => true, 'backUrl' => route('dashboard'), 'showNotifications' => true, 'showDarkMode' => true, 'financeUser' => Auth::user() ])

Active Cards

{{ $activeCards }}

Pending Applications

{{ $pendingCards }}

Total Balance

{{ Auth::user()->s_curr }}{{ number_format($totalBalance, 2) }}

Virtual Cards Made Easy

Create virtual cards for secure online payments, subscription management, and more. Enhanced security and spending control.

Secure

Protected payments

Global

Worldwide acceptance

Control

Spending limits

Instant

Quick issuance

Your Cards

New Card
@if(count($cards) > 0)
@foreach($cards as $card)
@if($card->status == 'active') Active @elseif($card->status == 'pending') Pending @elseif($card->status == 'inactive') Inactive @elseif($card->status == 'blocked') Blocked @endif
{{ ucfirst($card->card_level) }}
@if($card->card_type == 'visa')
@elseif($card->card_type == 'mastercard')
@elseif($card->card_type == 'american_express')
@else
@endif
{{ $settings->site_name ?? 'Bank' }}
Virtual Card
@if($card->card_type == 'visa')
VISA
@elseif($card->card_type == 'mastercard')
MASTERCARD
@elseif($card->card_type == 'american_express')
AMEX
@else @endif
•••• •••• •••• {{ $card->last_four }}
Card Holder
{{ $card->card_holder_name }}
Valid Thru
{{ $card->expiry_month }}/{{ substr($card->expiry_year, -2) }}
Balance {{ $card->currency }} {{ number_format($card->balance, 2) }}
Daily Limit {{ $card->currency }} {{ number_format($card->daily_limit, 2) }}
@endforeach
@else

No Cards Yet

Get started by applying for your first virtual card. It only takes a few minutes!

Apply for Your First Card
@endif
@endsection