@extends('layouts.app') @section('page-title', 'Payments Received This Month') @section('content')

Payments Received This Month

Members who paid this month ({{ Carbon\Carbon::now()->format('F Y') }})

Back to Dashboard
@forelse($payments as $payment) @empty @endforelse
Invoice # Member Amount Total Method Status Paid 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') }} Paid {{ $payment->paid_date ? \Carbon\Carbon::parse($payment->paid_date)->format('d/m/Y') : ($payment->created_at->format('d/m/Y')) }}
No payments received this month.
@endsection @push('scripts') @endpush