@forelse ($withdraws as $key => $withdraw) @empty @endforelse
{{ __('Sl') }} {{ __('Name') }} {{ __('Charge') }} {{ __('Charge Type') }} {{ __('Min Withdraw') }} {{ __('Max Withdraw') }} {{ __('status') }} {{ __('Action') }}
{{ $key + $withdraws->firstItem() }} {{ $withdraw->name }} {{ number_format($withdraw->charge, 2) . ' ' . @$general->site_currency }} {{ ucwords($withdraw->charge_type) }} {{ number_format($withdraw->min_amount, 2) . ' ' . @$general->site_currency }} {{ number_format($withdraw->max_amount, 2) . ' ' . @$general->site_currency }} @if ($withdraw->status)
{{ __('Active') }}
@else
{{ __('Inactive') }}
@endif
{{ __('No Data Found') }}
@if ($withdraws->hasPages()) @endif