{{ config('app.name') }}
WALLET
Available Balance
৳{{ number_format($user->Balance ?? 0) }}
Deposited
৳{{ number_format($user->Balance ?? 0) }}
Winning
৳{{ number_format($user->Winning ?? 0) }}
Add Money Withdraw
Transaction History
@forelse ($transactions as $txn)

{{ $txn->type }} - {{ $txn->Method }}

{{ \Carbon\Carbon::parse($txn->Date)->format('d M, h:i A') }}
{{ $txn->type == 'Deposit' ? '+' : '-' }}৳{{ number_format($txn->Amount) }}
{{ $txn->Status }}
@empty
No transactions yet.
@endforelse

Processing Transaction...

@include('partials.bottom-nav')