@extends('layouts.admin') @section('title','Fee Payments') @section('breadcrumb')@endsection @section('admin-content')

Fee Payments

{{ $payments->total() }} records  |  Total: ₹{{ number_format($totalAmount, 0) }}

{{-- Filters --}}
@forelse($payments as $p) @empty @endforelse
Receipt No Date Student Institute Course Session Mode Amount Cashier Actions
{{ $p->receipt_no }} {{ $p->payment_date->format('d M Y') }} {{ optional($p->student)->name }}
{{ optional($p->student)->enrollment_no }}
{{ optional(optional($p->student)->institute)->name ?? '-' }} {{ optional(optional($p->student)->course)->name ?? '-' }} {{ optional($p->academicSession)->name ?? '-' }} {{ $p->payment_mode }} ₹{{ number_format($p->amount_paid, 0) }} {{ optional($p->cashier)->name ?? 'System' }}
No payments found.
@if($payments->hasPages()) @endif
@endsection