@extends('layouts.muladash') @section('title', $title) @section('content') @include('layouts.mulapart')
Logo Dark Logo

{{ number_format($totalBalanceInUSD, 2) }} {{ $settings->currency }}

Total Balance

Topup

Send

Pay

@if (Auth::user()->account_verify == 'Verified') {{-- Show Withdraw if user is Verified --}}

Withdraw

@else {{-- Show KYC if user is NOT Verified --}}

KYC

@endif
@if($cards->isEmpty())

No Cards Available, Kindly Request for one.

@else @endif

Recent Card Transactions

View All
@php use Illuminate\Support\Str; @endphp @foreach ($recentTransactions as $tx)
{{-- Transaction Info --}}
{{-- Placeholder Icon for Card Transaction --}}

{{ $tx->title }}

{{ $tx->description }}
{{ \Carbon\Carbon::parse($tx->date)->toDayDateTimeString() }}

{{-- Amount --}}
@if ($tx->amount > 0)

+{{ $settings->currency }} {{ number_format($tx->amount, 2) }}

@else

{{ $settings->currency }} {{ number_format($tx->amount, 2) }}

@endif
@endforeach
@endsection @section('scripts') @endsection