{{ __('My Withdrawals') }}

{{ __('Request Withdrawal') }}
@if (session('success')) @endif @if (session('error')) @endif @if ($withdrawals->isEmpty())

You haven't made any withdrawal requests yet.

{{ __('Request a Withdrawal') }}
@else
@foreach ($withdrawals as $withdrawal) @endforeach
{{ __('Date') }} {{ __('Reference') }} {{ __('Amount') }} {{ __('Fee') }} {{ __('Net Amount') }} {{ __('Status') }} {{ __('Actions') }}
{{ $withdrawal->created_at->format('M d, Y H:i') }} {{ $withdrawal->reference }} R{{ number_format($withdrawal->amount, 2) }} R{{ number_format($withdrawal->fee_amount, 2) }} R{{ number_format($withdrawal->net_amount, 2) }} {{ ucfirst($withdrawal->status) }} {{ __('View') }} @if ($withdrawal->status == 'pending')
@csrf
@endif
{{ $withdrawals->links() }}
@endif