@extends('layouts/blankLayout') @section('title', 'Deposit Return Receipt - ' . $depositReturn->id) @section('page-style') @endsection @section('content')
| Return Ref. | DR-{{ $depositReturn->id }} |
|---|---|
| Return Date | {{ $depositReturn->return_date?->format('d/m/Y') ?? '—' }} |
| Student ID | {{ $depositReturn->student_id }} |
| Student Name | {{ $depositReturn->student->full_name ?? '—' }} |
| Refund Amount (₹) | {{ number_format($depositReturn->amount_returned, 2) }} |
| Amount in Words | {{ $amountInWords ?? '—' }} |
| Mode of Refund | {{ \Illuminate\Support\Arr::get(config('student_registration.payment_modes', []), $depositReturn->payment_mode, $depositReturn->payment_mode) }} |
| UTR / Reference | {{ $depositReturn->transaction_id }} |
| Notes | {{ $depositReturn->notes }} |