@if(session('success')) @endif @if(session('error')) @endif
মোট ব্যালেন্স

৳{{ number_format($wallet->balance ?? 0.00, 2) }}


উইথড্র যোগ্য:
৳{{ number_format($wallet->withdrawable_balance ?? 0.00, 2) }}
বোনাস ব্যালেন্স:
৳{{ number_format($wallet->bonus_balance ?? 0.00, 2) }}

টাকা রিচার্জ / ডিপোজিট করুন

@csrf
🕒 সাম্প্রতিক লেনদেনের বিবরণ
@forelse($transactions as $trx) @empty @endforelse
তারিখ বিবরণ ধরণ পরিমাণ চলতি ব্যালেন্স
{{ \Carbon\Carbon::parse($trx->created_at)->format('d M, Y h:i A') }} {{ $trx->description }} {{ $trx->type === 'credit' ? 'যোগ (Credit)' : 'বিয়োগ (Debit)' }} {{ $trx->type === 'credit' ? '+' : '-' }}৳{{ number_format($trx->amount, 2) }} ৳{{ number_format($trx->current_balance, 2) }}
এখনো কোনো লেনদেন বা ট্রানজেকশন হয়নি।