@extends('layouts/eims_layout') @section('title', '| ' . $pageTitle) @section('content')

{{$pageTitle}} Details

{{-- ul nav nav-tabs --}}
{{$student->name}}

{{$student->name}}

{{$companyType == 'UNV' ? 'Program': 'Medium/Version'}}: {{$student?->eims_program?->name ?? null}}

{{$companyType == 'UNV' ? 'Semester': 'Class'}}: {{$student->eims_semester_class?->name}}

@if($companyType !== 'UNV')

Group: {{$student->eims_semester_class_group?->name}}

Section: {{$student->eims_section?->name}}

@endif

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

Roll No: {{$student->roll_no}}

{{-- Personal information--}}
Personal Information
@if($companyType === 'UNV') @endif @if($companyType !== 'UNV') @else @endif
# Admission No: {{$student->admission_no}}
# Name: {{$student->name}}
# Phone Number: {{$student->phone_number}}
# Email: {{$student->email}}
# Gender: {{ ucfirst($student->gender)}}
# Marital Status: {{ ucfirst($student->marital_status)}}
# Date Of Birth: {{$student->dob->format('d-m-Y')}}
# Religion: {{$student->religion}}
# Blood Group: {{$student->blood_group}}
# Nationality: {{$student->nationality}}
# Birth Certificate ID: {{$student->birth_certificate_id}}
# National ID: {{$student->national_id}}
# Father's Name: {{$student->father_name}}
# Father's Phone: {{$student->father_phone_number}}
# Father's Occupation: {{$student->father_occupation}}
# Mother's Name: {{$student->mother_name}}
# Mother's Phone: {{$student->mother_phone_number}}
# Mother's Occupation: {{$student->mother_occupation}}
# Guardian's Name: {{$student->guardian_name}}
# Guardian's Phone: {{$student->guardian_phone_number}}
# Guardian's Occupation: {{$student->guardian_occupation}}
# Permanent Address: {{$student->permanent_village_house_no}} , {{$student->permanent_po_road_no}} , {{$student->permanent_ps}} , {{$student->permanent_dist}}
# Present Address: {{$student->present_village_house_no}} , {{$student->present_po_road_no}} , {{$student->present_ps}} , {{$student->present_dist}}

{{-- Parent Gurdian Details --}}
Person to be noticed in case of emergency
# Name: {{$student->emergency_contact_person_name}}
# Relation: {{$student->emergency_contact_person_relationship}}
# Designation: {{$student->emergency_contact_person_designation}}
# Phone Number: {{$student->emergency_contact_person_phone_number}}
# Address: {{$student->emergency_contact_person_address}}

Educational Information
@foreach($student->eims_student_educational_information as $student_educational_information) @if($student_educational_information->institute_type !== 'bachelor' && $student_educational_information->institute_type !== 'masters') @else @endif @if($student_educational_information->institute_type !== 'bachelor' && $student_educational_information->institute_type !== 'masters') @else @endif @endforeach
@php $institute_type = match ($student_educational_information->institute_type) { 'previous' => 'Previous Institute', 'ssc' => 'SSC/O’ Level / Equivalent', 'hhc' => 'HSC/A’ Level / Equivalent', 'bachelors' => 'Bachelor’s Degree/Equivalent', 'masters' => 'Master’s Degree/Equivalent', default => 'Unknown', }; @endphp {{$institute_type}} Institute Name: {{$student_educational_information->institute_name}}
Board: {{$student_educational_information->eims_board?->name}}University: {{$student_educational_information->institute_university}}
GPA: {{$student_educational_information->institute_gpa}}
Group: {{$student_educational_information->eims_group?->name}}Program: {{$student_educational_information->institute_program}}
Year: {{$student_educational_information->institute_year}}
{{-- fees Collection--}} {{----}}
SL Fees Type Status Fees Fine Transaction ID Payment Method Collection Date Paid
Total:
{{-- Courses --}}
{{$companyType == 'UNV' ? 'Courses': 'Subjects'}}
{{-- courses list --}} @foreach($enrolledCourseSubjects as $enrolledCourseSubject) @endforeach
# {{$companyType == 'UNV' ? 'Course': 'Subject'}} Name Code Group
{{$loop->iteration}} {{$enrolledCourseSubject->name}} {{$enrolledCourseSubject->course_subject_code}} {{$enrolledCourseSubject->eims_semester_class_group->name}}
{{-- div class="tab-content" --}}
{{-- div panel-body --}}
{{-- Div panel panel-default panel-border --}}
@endsection