Payments Ledger

Review bank transfer requests, verify payments, and activate course access for students.

@if(session('success'))
{{ session('success') }}
@endif
@forelse($payments as $payment) @empty @endforelse
Request Course Student Transfer Status Submitted Actions
{{ $payment->gateway_transaction_id ?? 'N/A' }}
{{ $payment->gateway }}
{{ $payment->course->title ?? 'Deleted Course' }}
{{ $payment->course->slug ?? 'Unavailable' }}
{{ $payment->user->name ?? 'Deleted User' }}
{{ $payment->user->email ?? '' }}
{{ $payment->currency }} {{ number_format((float) $payment->amount, 0) }}
Ref: {{ $payment->transfer_reference ?? 'N/A' }}
Phone: {{ $payment->payer_phone ?? 'N/A' }}
{{ ucfirst($payment->status) }} {{ optional($payment->submitted_at ?? $payment->created_at)->format('M d, Y h:i A') }} Review
No payment records found.
{{ $payments->links() }}