@php use App\Enums\TrxType; @endphp @php use App\Enums\TrxStatus; @endphp @extends('backend.deposit.index') @section('title', __('Manual Deposit Requests')) @section('deposit_header') @endSection @section('deposit_content')
{{-- Date Range Picker --}}
{{-- Search Input --}}
{{-- Transactions Table --}}
@forelse($depositRequests as $transaction) @empty @endforelse
{{ __('User | TXN ID') }} {{ __('Amount | Fee') }} {{ __('Description | Provider') }} {{ __('Time') }} {{ __('Action') }}
User Avatar
{{ $transaction->user->name }}
{{ strtoupper($transaction->trx_id) }}
{{ $transaction->amount . ' ' . $transaction->currency }}
{{ $transaction->fee . ' ' . $transaction->currency }}
{{ $transaction->description }}
{{ ucwords($transaction->provider) }}
{{ $transaction->created_at->format('Y-m-d H:i') }}
{{ $transaction->created_at->diffForHumans() }}
{{ $depositRequests->links() }}
{{-- Review modals live outside the scrolling table so they are not clipped by it and do not inherit the action cell's layout constraints. --}} @foreach($depositRequests as $transaction) @include('backend.deposit.partials._review_modal') @endforeach @endsection @push('scripts') @endpush