@extends('layouts.panel') @section('title', $title) @push('css') @endpush @section('breadcrumb') @endsection @section('content') @slot('title')
@lang('Student Details')
@endslot
Photo
{{ __('Student ID') }}

{{ $student->student_id }}

{{ __('Full Name') }}

{{ $student->name }}

{{ __('Email') }}

{{ $student->email }}

{{ __('Date of Birth') }}

{{ formatDate($student->date_of_birth) }} ({{ getAge($student->date_of_birth ?? '') }} {{ __('years') }})

{{ __('Address') }}

{{ $student->address }}, {{ $student->city }}, {{ $student->state }},

{{ __('Admission Date') }}

{{ formatDate($student->admission_date) }}

{{ __('Class') }}

{{ $student->class }}

{{ __('Major') }}

{{ $student->major }}

@endsection @push('js') @endpush