@extends('layouts/contentNavbarLayout') @section('title', 'Deposit Receipt Book') @section('vendor-style') @endsection @section('content')

Deposit Receipt Book

Reset
@forelse($deposits as $d) @php $s = $d->student; @endphp @empty @endforelse @if($deposits->isNotEmpty()) @endif
Receipt / Ref. Student Transaction Date Period Amount Payment Mode Action
D-{{ $d->id }}
@if($s->documents->where('document_type', 'profile_photo')->first()) @else {{ strtoupper(mb_substr($s->first_name ?? '', 0, 1)) }} @endif
{{ $s->full_name }}{{ $s->student_mobile ?? '—' }}
{{ $d->actual_deposit_date?->format('d/m/Y') ?? '—' }} {{ $d->from_date?->format('d/m/Y') ?? '—' }} – {{ $d->to_date?->format('d/m/Y') ?? '—' }} ₹ {{ number_format($d->amount, 2) }} {{ $paymentModes[$d->payment_mode] ?? $d->payment_mode }}
No deposit records for the selected filter.
Total ₹ {{ number_format($total, 2) }}
{{-- Receipt Modal --}}
@endsection @section('vendor-script') @endsection @section('page-script') @endsection