Withdrawals
Available Balance
${{ number_format(Auth::user()->balance, 2) }}
Total Withdrawn
${{ number_format($totalWithdrawn, 2) }}
Pending Withdrawals
${{ number_format($pendingWithdrawals, 2) }}
Date | Amount | Payment Details | Status | Notes |
---|---|---|---|---|
{{ \Carbon\Carbon::parse($withdrawal->created_at)->format('M d, Y H:i') }} | ${{ number_format($withdrawal->amount, 2) }} |
Method:
{{ isset($withdrawal->account_details['payment_method']) ? ucfirst($withdrawal->account_details['payment_method']) : 'Bank' }} @if (isset($withdrawal->account_details['payment_method']) && $withdrawal->account_details['payment_method'] === 'paypal') Email: {{ $withdrawal->account_details['paypal_email'] ?? 'N/A' }} @elseif(isset($withdrawal->account_details['payment_method']) && $withdrawal->account_details['payment_method'] === 'crypto') Network: {{ $withdrawal->account_details['crypto_network'] ?? 'N/A' }} Address: {{ $withdrawal->account_details['crypto_address'] ?? 'N/A' }} @else Bank: {{ $withdrawal->account_details['bank'] ?? 'N/A' }} Title: {{ $withdrawal->account_details['title'] ?? 'N/A' }} @endif |
@php $statusColors = [ 'pending' => 'warning', 'approved' => 'success', 'rejected' => 'danger', ]; $statusColor = $statusColors[$withdrawal->status] ?? 'secondary'; @endphp {{ ucfirst($withdrawal->status) }} | {{ $withdrawal->admin_notes ?? '-' }} |
No withdrawals found |