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

Manage Deposits

Client Deposits

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

No Deposit Order Found

@endforelse
S/N Client Amount Payment Method Status Date Action
{{ $counter }} {{ optional($item->user)->name }} ${{ number_format($item->amount, 2) }} {{ optional($item->system_wallet)->name }} {{ Str::ucfirst($item->status) }} {{ $item->created_at->diffForHumans() }}
@if($item->status != 'processed') @endif
@endsection @push('scripts') @endpush