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

Receipts

New Entry
Reset
@forelse($receipts as $r) @empty @endforelse
ReceiptDateStudentAmountModeActions
{{ $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 }}
No receipts found.
{{ $receipts->withQueryString()->links() }}
@endsection