{{ __('Withdrawal Requests') }}

{{ __('Withdrawal Settings') }}
@if (session('success')) @endif @if (session('error')) @endif
{{ __('Reset') }}
@forelse ($withdrawals as $withdrawal) @empty @endforelse
{{ __('Reference') }} {{ __('User') }} {{ __('Amount') }} {{ __('Fee') }} {{ __('Net Amount') }} {{ __('Status') }} {{ __('Date') }} {{ __('Actions') }}
{{ $withdrawal->reference }} {{ $withdrawal->user->name }}
{{ $withdrawal->user->email }}
R{{ number_format($withdrawal->amount, 2) }} R{{ number_format($withdrawal->fee_amount, 2) }} R{{ number_format($withdrawal->net_amount, 2) }} {{ ucfirst($withdrawal->status) }} {{ $withdrawal->created_at->format('M d, Y') }} {{ __('View') }}
{{ __('No withdrawal requests found.') }}
{{ $withdrawals->links() }}