{{ __('Payment Withdraw Module') }}

{{ __('Withdraw form') }}

@csrf
@forelse ($withdraws as $index => $withdraw) @empty @endforelse
{{ __('SN') }} {{ __('Method') }} {{ __('Charge') }} {{ __('Total Amount') }} {{ __('Withdraw Amount') }} {{ __('Status') }}
{{ ++$index }} {{ $withdraw->method }} {{ currency($withdraw->total_amount - $withdraw->withdraw_amount) }} {{ currency($withdraw->total_amount) }} {{ currency($withdraw->withdraw_amount) }} @if ($withdraw->status == 'approved') {{ __('Success') }} @elseif ($withdraw->status == 'rejected') {{ __('Rejected') }} @else {{ __('Pending') }} @endif