@extends('layouts.master') @section('title') {{ __('Student Profile') }} - {{ $student->user->first_name }} {{ $student->user->last_name }} @endsection @section('content')
{{ $student->user->first_name }}'s Photo

{{ $student->user->first_name }} {{ $student->user->last_name }}

{{ __('Student') }}

{{ __('Admission No') }} : {{ $student->admission_no }}

  • {{ __('Medium') }}: {{ $student->class_section->medium->name ?? '-' }}
  • {{ __('Class & Section') }}: {{ $student->class_section->class->name ?? '-' }} ({{ $student->class_section->section->name ?? '-' }})
  • {{ __('Stream') }}: {{ $student->class_section->class->stream->name ?? '-' }}
  • {{ __('Shift') }}: {{ $student->class_section->class->shift->name ?? '-' }}
  • {{ __('Session') }}: {{ $student->session_year->name ?? '-' }}
  • {{ __('Gender') }}: {{ ucfirst($student->user->gender) }}
{{ __('Basic Information') }}

{{ __('Admission Date') }}: {{ $student->admission_date ?? '-' }}

{{ __('Date of Birth') }}: {{ $student->user->dob ?? '-' }}

{{ __('Mobile Number') }}: {{ $student->user->mobile ?? '-' }}

{{ __('Address Information') }}
{{ __('Current Address') }}

{{ $student->user->current_address ?: '-' }}

{{ __('Permanent Address') }}

{{ $student->user->permanent_address ?: '-' }}

{{ __('Parent/Guardian Information') }}
@if(isset($student->guardian))

{{ __('Name') }}: {{ $student->guardian->first_name }} {{ $student->guardian->last_name }}

{{ __('Gender') }}: {{ ucfirst($student->guardian->gender) }}

{{ __('Email') }}: {{ $student->guardian->email }}

{{ __('Mobile') }}: {{ $student->guardian->mobile }}

@else
{{ __('No guardian information available.') }}
@endif
@include('reports.student.attendance-report-tab', ['sessionYears' => $sessionYears])
@include('reports.student.exam-report-tab')
@include('reports.student.fees-report-tab', ['studentFees' => $studentFees])
@endsection @push('scripts') @endpush