@include('students.common-layout.header')
Student Image

{{ $student->user->name ?? '-'}}

Admission No: {{ $student->admission_no ?? '-'}}

Personal Info

@if($student->user->status == 1) Active @else Inactive @endif
Board : {{ $student->board->board_name ?? '-' }}
Class : {{ $student->class->classes_name ?? '-' }}
Subject : {{ $student->subject->subjects_name ?? '-' }}
Gender : {{ $student->user->gender->gender_name ?? '-' }}
Date Of Birth : {{ date('d-m-Y', strtotime($student->user->date_of_birth)) ?? '-'}}
Age : {{ $student->user->age ?? '-'}}
Category : {{ $student->user->category->category_name }}
Academic Year : {{ $student->academicYear->years ?? '-' }}
Phone Number : {{ $student->user->mobile_number ?? '-'}}
Email : {{ $student->user->email ?? '-'}}
Parent Guardian Detail
{{ $student->father_name ?? '-'}}
Father
Phone
{{ $student->father_phone ?? '-'}}
Occupation
{{ $student->father_occupation ?? '-'}}
{{ $student->mother_name ?? '-'}}
Mother
Phone
{{ $student->mother_phone ?? '-'}}
Occupation
{{ $student->mother_occupation ?? '-'}}
{{ $student->guardian_name ?? '-'}}
Guardian ({{ $student->guardian_type ?? '-'}})
Phone
{{ $student->guardian_phone ?? '-'}}
Email
{{ $student->guardian_email ?? '-'}}
Address
Current Address
{{ $student->current_address ?? '-'}}
Permanent Address
{{ $student->permanent_address ?? '-'}}
Guardian Address
{{ $student->guardian_address ?? '-'}}
Medical Details
Blood Group
{{ $student->blood_group ?? '-'}}
@include('students.common-layout.footer')