{{ __('Payment Success List') }}

All successful payment transactions

Successful Payments

All completed payment transactions

@if(session('success'))
{{ session('success') }}
@endif
@forelse($payments as $payment) @empty @endforelse
Order ID Payment ID User Name Email Mobile Amount Payment Status Date Actions
{{ $payment->order_id }} {{ $payment->payment_id ?? 'N/A' }}
{{ $payment->user ? substr($payment->user->name, 0, 2) : 'N/A' }}
{{ $payment->user->name ?? 'N/A' }}
{{ $payment->user_email }} {{ $payment->mobile_no ?? 'N/A' }} ₹{{ number_format($payment->total_amount, 2) }} {{ ucfirst($payment->payment_status) }} {{ $payment->created_at->format('d M Y') }}

No Payments Found

No successful payments found.

@if($payments->hasPages())
{{ $payments->links() }}
@endif