@extends('dashboard.master') @section('title', 'Sonad Details') @section('content')
Sonad Details
@if(!empty($data->receipt_no)) @endif @if(!empty($data->date)) @endif @if(!empty($data->students->name)) @endif @if(!empty($data->exam->name)) @endif @if(!empty($data->students->stuclass->name)) @endif @if(!empty($data->students->register_no)) @endif @if(!empty($data->funds->name)) @endif @if(!empty($data->amount)) @endif @if(!empty($data->users->name)) @endif @if(!empty($data->note)) @endif
Receipt No {{ $data->receipt_no }}
Date {{ \Carbon\Carbon::parse($data->date)->format('d-M-Y') }}
Student Name {{ $data->students->name }}
Exam Name {{ $data->exam->name }}
Class Name {{ $data->students->stuclass->name }}
Reg No {{ $data->students->register_no }}
Fund Name {{ $data->funds->name }}
Amount {{ $data->amount }}
Given By {{ $data->users->name }}
Note {{ $data->note }}
@endsection