@extends('layouts/contentNavbarLayout') @section('title', 'Rent Receipt Book') @section('vendor-style') @endsection @section('content')
| Receipt No. | Student | Rent Date | Period | Amount | Payment Mode | Action |
|---|---|---|---|---|---|---|
| {{ $r->receipt_no ?? 'R' . $r->id }} |
@if($s->documents->where('document_type', 'profile_photo')->first())
{{ $s->full_name }}{{ $s->student_mobile ?? '—' }}
|
{{ $r->paid_at?->format('d/m/Y') ?? '—' }} | {{ $r->period_from->format('d/m/Y') }} – {{ $r->period_to->format('d/m/Y') }} | ₹ {{ number_format($r->amount, 2) }} | {{ $paymentModes[$r->payment_mode] ?? $r->payment_mode }} | |
| No rent records for the selected filter. | ||||||
| Total | ₹ {{ number_format($total, 2) }} | |||||