@extends('layouts.app') @section('title', 'Application Student Detail') @section('content')
Academic Information
Menu Data Menu Data Menu Data
Student's Name {{ optional($student->user)->name }} Class {{ optional($student->classtype)->name }} Type {{ $student->student_type }}
Student's Name(Bangla) {{ optional($student->user)->name_bn }} Session {{ optional($student->session)->name }} Section {{ optional($student->section)->name }}
Year {{ optional($student->classyear)->name }} Group {{ optional($student->group)->name }} Status
{{ $student->status }}
Action Edit
Basic Information
Menu Data Menu Data Menu Data
Father's Name {{ optional($student->user->studentInfo)->father }} Father's Name (Bangla) {{ optional($student->user->studentInfo)->father_bn }} Occupation {{ optional($student->user->studentInfo)->father_occupation }}
Father's NID {{ optional($student->user->studentInfo)->father_nid }} Mobile {{ optional($student->user->studentInfo)->father_mobile }} Income {{ optional($student->user->studentInfo)->father_annual_income }}
Mother's Name {{ optional($student->user->studentInfo)->mother }} Mother's Name (Bangla) {{ optional($student->user->studentInfo)->mother_bn }} Occupation {{ optional($student->user->studentInfo)->mother_occupation }}
Mother's NID {{ optional($student->user->studentInfo)->mother_nid }} Mobile {{ optional($student->user->studentInfo)->mother_mobile }} Annual Income {{ optional($student->user->studentInfo)->mother_annual_income }}
Guardian Information
Menu Data Menu Data Menu Data
Guardian's Name {{ optional($student->user->studentInfo)->guardian }} Guardian's Name (Bangla) {{ optional($student->user->studentInfo)->guardian_bn }} Occupation {{ optional($student->user->studentInfo)->guardian_occupation }}
Guardian's NID {{ optional($student->user->studentInfo)->guardian_nid }} Mobile {{ optional($student->user->studentInfo)->guardian_mobile }} Relationship {{ optional($student->user->studentInfo)->guardian_relationship }}
Address
Menu Data Menu Data Menu Data
Present Address
Country {{ optional($student->user->studentInfo->country)->name }} District {{ optional($student->user->studentInfo->district)->name }} Police Station {{ optional($student->user->studentInfo)->police_station }}
Post Office {{ optional($student->user->studentInfo)->post_office }} Post Code {{ optional($student->user->studentInfo)->post_code }} Address {{ optional($student->user->studentInfo)->address }}
Permanent Address
Country {{ optional($student->user->studentInfo->percountry)->name }} District {{ optional($student->user->studentInfo->perdistrict)->name }} Police Station {{ optional($student->user->studentInfo)->per_police_station }}
Post Office {{ optional($student->user->studentInfo)->per_post_office }} Post Code {{ optional($student->user->studentInfo)->per_post_code }} Address {{ optional($student->user->studentInfo)->per_address }}
Photos
@if (optional($student->user)->avatar) @endif @if (optional($student->user->studentInfo)->father_avatar) @endif @if (optional($student->user->studentInfo)->mother_avatar) @endif @if (optional($student->user->studentInfo)->guardian_avatar) @endif
Student Photo Father's Photo Mother's Photo Guardian's Photo

Student Login Information

Username {{ optional($student->user)->uid }} Email {{ optional($student->user)->email }}
Mobile {{ optional($student->user)->mobile }} Resend Password Send Password
Payment History
@foreach ($student->paymenthistories as $item) @endforeach
# UID Name Class Session Group Year Amount Payment Method Date
{{ $loop->iteration }} {{ optional($item->studentuser)->uid }} {{ optional($item->studentuser)->name }} {{ optional($item->classtype)->name }} {{ optional($item->session)->name }} {{ optional($item->group)->name }} {{ optional($item->classyear)->name }} {{ number_format($item->amount,2) }} {{ optional($item->paymentmethod)->name }} {{ $item->created_at->format('d-m-Y') }}
Total {{ number_format($student->paymenthistories->sum('amount'),2)}}
@endsection @push('delete')
@csrf @method('delete')
@endpush