@extends('layouts/blankLayout') @section('title', 'Deposit Receipt - ' . $deposit->id) @section('page-style') @endsection @section('content')
| Transaction / Receipt | D-{{ $deposit->id }} |
|---|---|
| Date | {{ $deposit->actual_deposit_date?->format('d/m/Y') ?? '—' }} |
| Student ID | {{ $deposit->student_id }} |
| Student Name | {{ $deposit->student->full_name ?? '—' }} |
| Room / Bed | {{ $deposit->student->room_bed_identifier ?? ($deposit->student->bed ? $deposit->student->bed->name ?? '—' : '—') }} |
| Period | {{ $deposit->from_date?->format('d/m/Y') ?? '—' }} to {{ $deposit->to_date?->format('d/m/Y') ?? '—' }} |
| Amount (₹) | {{ number_format($deposit->amount, 2) }} |
| Amount in Words | {{ $amountInWords ?? '—' }} |
| Payment Mode | {{ \Illuminate\Support\Arr::get(config('student_registration.payment_modes', []), $deposit->payment_mode, $deposit->payment_mode) }} |
| UTR / Transaction ID | {{ $deposit->transaction_id }} |