Manage clients withdrawals

@if ($withdrawals->count() > 0)
   
   
   
   
   
@if ($fromDate != '' && $toDate != '')
@endif

@foreach ($withdrawals as $item) @endforeach
Client name Amount requested Amount + charges Payment Method Status Date created
{{ $item->duser->name }} {{ $settings->currency }}{{ number_format($item->amount) }} {{ $settings->currency }}{{ number_format($item->to_deduct) }} {{ $item->payment_mode }} @if ($item->status == 'Processed') {{ $item->status }} @else {{ $item->status }} @endif {{ \Carbon\Carbon::parse($item->created_at)->toDayDateTimeString() }} View
{{ $withdrawals->links() }}
   
@if ($fromDate != '' && $toDate != '')
@endif
@else
no record found @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