@php $page = 'withdrawals' @endphp @extends('includes.layout') @section('content')

Manage Withdrawals

Client Withdrawals

@php $counter = 1; @endphp @forelse ($withdrawals as $item) @php $counter++; @endphp @empty

No Deposit Order Found

@endforelse
S/N Client Amount Charge Payment Method Type Status Date Action
{{ $counter }} {{ optional($item->user)->name }} ${{ number_format($item->amount, 2) }} ${{ number_format($item->charge, 2) }} {{optional($item->user_wallet)->system_wallet->name ?? 'Unknown' }} {{$item->type == 'main_balance' ? 'Main Balance' : 'Referral Bonus'}} {{ Str::ucfirst($item->status) }} {{ $item->created_at->diffForHumans() }}
@endsection @push('scripts') @endpush