@forelse ($withdrawlogs as $key => $withdrawlog) @empty @endforelse
{{ __('User') }} {{ __('Withdraw Amount') }} {{ __('User Will Get') }} {{ __('Charge Type') }} {{ __('Charge') }} {{ __('status') }} {{ __('Action') }}
{{$withdrawlog->user->username}} {{ $general->currency_icon . ' ' . $withdrawlog->withdraw_amount + ($withdrawlog->withdrawMethod->charge_type === 'percent' ? ($withdrawlog->withdraw_amount * $withdrawlog->withdraw_charge) / 100 : $withdrawlog->withdraw_amount) }} {{ $withdrawlog->withdraw_amount }} {{ ucwords($withdrawlog->withdrawMethod->charge_type) }} {{ number_format($withdrawlog->withdraw_charge, 2) }} @if ($withdrawlog->status == 1) {{ __('Success') }} @elseif($withdrawlog->status == 2) {{ __('Rejected') }} @else {{ __('Pending') }} @endif @if ($withdrawlog->status == 0) @endif
{{ __('No Data Found') }}
@if ($withdrawlogs->hasPages()) {{ $withdrawlogs->links('backend.partial.paginate') }} @endif