@extends('dashboard.master')
@section('title', 'Money Receipt Details')
@section('content')
@push('css')
@endpush
| Receipt No |
{{ $receiptNo ?? '--' }} |
| Date |
{{ $date ?? '--' }} |
| নাম/Name |
{{ $data->name ?? '--' }} |
| ক্লাস/Class |
{{ $data->students->departments->department_name }} |
| মাস/Month |
{{ $data->month ?? '--' }} |
| পরিমাণ/Amount |
{{ $data->amount ?? '--' }} টাকা |
| কথায়/In Word |
{{ $data->in_word ?? '--' }} |
| বাবদ/On Account Of |
{{ $data->received_purpose ?? '--' }} |
| বিঃদ্রঃ/Note |
{{ $data->note ?? '--' }} |
@push('js')
@endpush
@endsection