@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
Available Balance
{{ number_format(auth()->user()->wallet->balance, 2) }}

Instant Deposits

Secure Transactions

Secure & Encrypted

Bank-Grade Security

Fast Processing

Quick Withdrawals

Transaction History

View All
@forelse($transactions as $tx)
in_array($tx->type, ['deposit', 'earning']), 'bg-red-500/10 text-red-400 group-hover:bg-red-500 group-hover:text-white' => !in_array($tx->type, ['deposit', 'earning']), ])> @if(in_array($tx->type, ['deposit', 'earning'])) @else @endif

{{ $tx->description }}

{{ $tx->created_at->format('M d, Y') }} in_array($tx->type, ['deposit', 'earning']), 'bg-red-500/10 text-red-400' => !in_array($tx->type, ['deposit', 'earning']), ])> {{ str_replace('_', ' ', $tx->type) }}

in_array($tx->type, ['deposit', 'earning']), 'text-red-400' => !in_array($tx->type, ['deposit', 'earning']), ])> {{ in_array($tx->type, ['deposit', 'earning']) ? '+' : '-' }}₦{{ number_format($tx->amount, 2) }}

CONFIRMED

@empty
No Transactions Found

You have no transactions yet.

@endforelse
@if($transactions->hasPages())
{{ $transactions->links() }}
@endif