Review Payment Request

Verify the manual transfer and activate the selected course for the student.

Student + Course

Student: {{ $payment->user?->name }} ({{ $payment->user?->email }})
Course: {{ $payment->course?->title }}
Amount: {{ $payment->currency }} {{ number_format((float) $payment->amount, 0) }}
Request code: {{ $payment->gateway_transaction_id }}

Transfer Details

Sender name: {{ $payment->payer_name ?: 'N/A' }}
Phone / WhatsApp: {{ $payment->payer_phone ?: 'N/A' }}
Transfer reference: {{ $payment->transfer_reference ?: 'N/A' }}
Submitted: {{ optional($payment->submitted_at)->format('d M Y, h:i A') ?: 'N/A' }}
Student note: {{ $payment->transfer_notes ?: 'No extra note provided.' }}
@csrf @method('PUT')
@error('status') {{ $message }} @enderror

Leave blank for lifetime access. This is only applied when status is marked completed.

@error('expires_at') {{ $message }} @enderror
@error('admin_notes') {{ $message }} @enderror
Marking this payment as completed will activate the course for the student and send an email notification.
Back