@extends('dashboard.master') @section('title', 'Student Details') @push('css') @endpush @section('content')
@if($data->admission_type == 1) @endif
ফর্ম নং/Form No {{ $data->form_no ?? '--' }}
নিবন্ধন নং/Register No {{ $data->register_no ?? '--' }}
নাম/Student Name {{ $data->name ?? '--' }}
পিতা/Father Name {{ $data->father_name ?? '--' }}
মাতা/Mother Name {{ $data->mother_name ?? '--' }}
ভর্তির ধরন/Admission Type @if($data->admission_type == 1) নতুন ভর্তি @elseif($data->admission_type == 2) পুরাতন ভর্তি @endif
জন্ম তারিখ/Birth Date @if(!empty($birthDay)) {{ $birthDay ?? '' }} @endif
জন্ম নিবন্ধন/Birthcertificate {{ $data->birthcertificate ?? '' }}
ক্লাস/Class {{ $data->stuclass->name }}
ছাত্রের ধরন/Student Type @if($data->student_type == 1) অনাবাসিক @elseif($data->student_type == 2) আবাসিক @elseif($data->student_type == 3) ডে- কেয়ার @endif
লিঙ্গ/Student Gender @if($data->gender == 1) ছেলে @elseif($data->gender == 2) মেয়ে @endif
এতিমের ধরন/Etim Type @if($data->etim == 1) হ্যাঁ @elseif($data->etim == 2) না @endif
তারিখ/Date {{ $date ?? '--' }}
নতুন ছাত্রের রেজাল্ট/New Student Result {{ $data->new_result ?? '--' }}
আইডি নাম্বার /Id Number {{ $data->id_number ?? '--' }}
@if($data->admission_type == 2) @endif @if ($data->gurdian_name_two) @endif @if ($data->gurdian_name_three) @endif @if ($data->gurdian_mobile_two) @endif @if ($data->gurdian_mobile_three) @endif
রোল নং /Roll No {{ $data->roll_no ?? '--' }}
ভর্তি ফী/Admission Fee {{ $admissionFee->amount ?? '--' }}
পূর্ববর্তী মাদ্রাসার নাম/Previous Madrasha {{ $data->pre_madrasha ?? '--' }}
পূর্ববর্তী ক্লাসের নাম/Previous Class {{ $data->pre_class ?? '--' }}
গ্রাম/Village {{ $data->village ?? '--' }}
ডাকঘর/Post Office {{ $data->post_office ?? '--' }}
থানা/Police Station {{ $data->police_station ?? '--' }}
জেলা/District {{ $data->district ?? '--' }}
অভিভাবকের নাম/Gurdian Name {{ $data->gurdian_name ?? '--' }}
অভিভাবকের নাম ২/Gurdian Name 2 {{ $data->gurdian_name_two ?? '--' }}
অভিভাবকের নাম ৩/Gurdian Name 3 {{ $data->gurdian_name_three ?? '--' }}
অভিভাবকের মোবাইল ২/Gurdian Mobile 2 {{ $data->gurdian_mobile_two ?? '--' }}
অভিভাবকের মোবাইল ৩/Gurdian Mobile 3 {{ $data->gurdian_mobile_three ?? '--' }}
অভিভাবকের এন আইডি/Gurdian NID {{ $data->gurdian_nid ?? '--' }}
সম্পর্ক/Relation {{ $data->relation ?? '--' }}
অভিভাবকের মোবাইল/Gurdian Mobile {{ $data->gurdian_mobile ?? '--' }}
অভিভাবকের ঠিকানা/Gurdian Address {{ $data->gurdian_address?? '--' }}
ছাত্রের ছবি/Student Photo Photo
ভর্তি ফী গ্রহণ/Received
ভর্তি ফী বাকি/Due
@if(!empty($addmissionFees->discount))ভর্তি ফী ডিসকাউন্ট /Discount@endif
@if(!empty($data->monthly_dis))মাসিক ফী ডিসকাউন্ট /Monthly Discount @endif
{{ $addmissionFees->amount ?? '--' }}
{{ $addmissionFees->due ?? '--' }}
@if(!empty($data->discount)) {{ $data->discount ?? '--' }}@endif
@if(!empty($data->monthly_dis)) {{ $data->monthly_dis ?? '--' }}@endif
ফিঙ্গারপ্রিন্ট আইডি/Fingerprint ID {{ $data->fingerprint_id ?? ''}}
student_type == 1) class="col-md-12" @else class="col-md-6" @endif> @php $sn = 1; @endphp @foreach($academicFees as $month => $items) @endforeach
SN Month Name Amount
{{ $sn++ }} {{ \Carbon\Carbon::parse($month)->format('F, Y') }} @foreach($items as $fee) @endforeach
{{ $fee->fees->name ?? '' }} {{ $fee->amount }}
@if($data->student_type == 2 && $hostelFees->isNotEmpty())
@php $sn = 1; @endphp @foreach($hostelFees as $month => $items) @endforeach
SN Hostel Fee Amount
{{ $sn++ }} {{ \Carbon\Carbon::parse($month)->format('F, Y') }} @foreach($items as $fee) @endforeach
{{ $fee->fees->name ?? '' }} {{ $fee->amount }}
@endif
@push('js') @endpush @endsection