@extends('layouts.app') @section('page-title', 'Pending Payments') @section('content')
Payments that are due or overdue
| Invoice # | Member | Amount | Total | Method | Status | Due Date | Action |
|---|---|---|---|---|---|---|---|
| {{ $payment->invoice_number ?? 'N/A' }} | {{ $payment->member->full_name ?? 'N/A' }} | Rs {{ number_format($payment->amount, 2) }} | Rs {{ number_format($payment->total_amount, 2) }} | {{ ucfirst($payment->payment_method ?? 'N/A') }} | Pending | {{ $payment->due_date ? $payment->due_date->format('d/m/Y') : 'N/A' }} | |
| No pending payments found. | |||||||