{{-- Breadcrumb --}}

{{ __('Current Balance') }}

{{ specific_currency_with_icon('USD',$current_balance ?? 0) }}

{{ __('Total Withdraw') }}

{{ specific_currency_with_icon('USD',$total_withdraw ?? 0) }}

{{ __('Total Earning') }}

{{ specific_currency_with_icon('USD',$total_earning ?? 0) }}
@forelse ($withdraws as $index => $withdraw) @empty @endforelse
{{ __('SN') }} {{ __('Method') }} {{ __('Charge') }} {{ __('Total Amount') }} {{ __('Withdraw Amount') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$index }} {{ $withdraw?->withdraw_method?->name }} {{ 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
@if (request()->get('par-page') !== 'all')
{{ $withdraws->onEachSide(0)->links() }}
@endif