Payment History

View all your payment transactions

Total Paid

Rs. {{ number_format($totalPaid, 0) }}

@if($payments->count() > 0)
@foreach($payments as $payment) @endforeach
Date Invoice/Reference Description Amount Method Status
{{ $payment->payment_date ? $payment->payment_date->format('M d, Y') : 'N/A' }}
{{ $payment->invoice_number ?? $payment->reference_number ?? 'N/A' }} {{ $payment->notes ?? 'Payment for GPS Service' }}
Rs. {{ number_format($payment->amount, 0) }}
{{ ucfirst(str_replace('_', ' ', $payment->payment_method ?? 'N/A')) }}
Paid
{{ $payments->links() }}
@else

No Payment History

You haven't made any payments yet.

@endif