@use('\Illuminate\Support\Number', 'Number') Manage withdrawals
@if (!$viewWithdrawal)
@if ($withdrawals->count() > 0)
@foreach ($withdrawals as $item) @endforeach
User Amount Amount + charges Payment Method Status Date created Action
spa_mode) wire:navigate @endif href="{{ route('admin.users.singleUser', ['user' => $item->user]) }}">{{ $item->user->name }} {{ Number::currency($item->amount, isset($settings) && $settings ? $settings->s_currency : 'USD') }} {{ Number::currency($item->to_deduct, isset($settings) && $settings ? $settings->s_currency : 'USD') }} {{ $item->payment_mode }} @if ($item->status == 'processed') {{ ucfirst($item->status) }} @elseif ($item->status == 'pending') {{ ucfirst($item->status) }} @else {{ ucfirst($item->status) }} @endif {{ $item->created_at->toDayDateTimeString() }} {{ $item->created_at->format('d M, Y') }} @can('process withdrawals') View @endcan @can('delete withdrawals') @endcan
{{ $withdrawals->links() }}
@else
@if ($search != '' || $status != 'All' || ($fromDate != '' && $toDate != ''))
No Result found

We couldn't find what you are looking for. Try again.

@else
No Data found

You do not have any withdrawal record.
When your users place a withdrawal request, it will appear here.

@endif
@endif
@endif @if ($viewWithdrawal) @endif