@extends('layouts.cashier')
@section('title','Receipts')
@section('breadcrumb')
Receipts@endsection
@section('cashier-content')
| Receipt | Date | Student | Amount | Mode | Actions |
@forelse($receipts as $r)
| {{ $r->receipt_no }} |
{{ $r->payment_date->format('d M Y') }} |
{{ optional($r->student)->name }} {{ optional($r->student)->enrollment_no }} |
₹{{ number_format($r->amount_paid, 0) }} |
{{ $r->payment_mode }} |
|
@empty
| No receipts found. |
@endforelse
{{ $receipts->withQueryString()->links() }}
@endsection