@extends('layouts.cashier') @section('title','Fee Entries') @section('breadcrumb')@endsection @section('cashier-content')

My Fee Entries

New Entry
@forelse($payments as $p) @empty @endforelse
ReceiptDateStudentAmountModeSessionAction
{{ $p->receipt_no }} {{ $p->payment_date->format('d M Y') }} {{ optional($p->student)->name }}
{{ optional($p->student)->enrollment_no }}
₹{{ number_format($p->amount_paid, 0) }} {{ $p->payment_mode }} {{ optional($p->academicSession)->name }}
No entries yet.
{{ $payments->links() }}
@endsection