@extends('layouts.app') @section('page-title', __('Payment History')) @section('page-heading', __('Payment History for ' . $user->first_name . ' ' . $user->last_name)) @section('breadcrumbs')
| @lang('Payment Cycle') | @lang('Invoice Number') | @lang('Amount Payable') | @lang('Status') | @lang('Date') | @lang('Action') |
|---|---|---|---|---|---|
| {{ $payment->payment_cycle_description }} | {{ $payment->invoice_number ?? 'N/A' }} | {{ number_format($payment->amount_payable, 2) }} | {{ $payment->status }} | {{ $payment->created_at->format('Y-m-d') }} | @lang('View Details') |
| @lang('No payments found.') | |||||