@if(session('success'))
{{ session('success') }}
@endif
@if(session('warning'))
{{ session('warning') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| # |
User |
Payment Method |
Amount (USD) |
Amount (PKR) |
Transaction ID |
Phone |
Status |
Date |
Actions |
@forelse($deposits as $deposit)
| {{ $loop->iteration }} |
{{ $deposit->user->name ?? 'N/A' }}
{{ $deposit->user->email ?? 'N/A' }}
|
{{ $deposit->paymentMethod->account_type ?? 'N/A' }} |
${{ number_format($deposit->amount, 2) }} |
Rs. {{ number_format($deposit->pkr_amount, 2) }} |
{{ $deposit->transaction_id }} |
{{ $deposit->account_number }} |
@if($deposit->status === 'pending')
Pending
@elseif($deposit->status === 'approved')
Approved
@else
Rejected
@endif
|
{{ $deposit->created_at->timezone('Asia/Karachi')->format('M d, Y') }}
{{ $deposit->created_at->timezone('Asia/Karachi')->format('h:i A') }}
|
|
@empty
| No deposits found. |
@endforelse
@endsection
@push('scripts')
@endpush