@extends('layouts.app') @section('page-title', __('Payment History')) @section('page-heading', __('Payment History for ' . $user->first_name . ' ' . $user->last_name)) @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@lang('Payment History')
@if (count($payments)) @foreach ($payments as $payment) @endforeach @else @endif
@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.')
{!! $payments->links() !!} @stop @section('scripts') @parent @stop