@extends('layouts.adminapp') @section('title') {{__('lng.Student')}} - {{__('lng.Details')}} @endsection @section('active_student', 'active') @section('open_student', 'open') @section('active_student_register', 'active') @section('content')

{{__('lng.Student')}}

{{ $Student->name}}
{{ __('lng.Back') }}

{{ $Student->place }} {{ $Student->mobile }}

{{ __('lng.Class') }}

{{$Student->Class->title ?? 'Pass Out' }}

{{ __('lng.BatchYear') }}

{{$Student->batch_year}}

@php $dob = date("F-d-Y",strtotime($Student->dob));@endphp
{{ __('lng.DateOfBirth') }} {{$dob}}
{{ __('lng.Gender') }} {{$Student->gender}}
{{ __('lng.FatherName') }} {{$Student->fathername}}
{{ __('lng.MotherName') }} {{$Student->mothername}}
{{ __('lng.GuardianName') }} {{$Student->guardian}}
{{ __('lng.GuardianRelation') }} {{$Student->guardianrelation}}
{{ __('lng.OpeningBalance') }} @currency($Student->openingbalance) @if($Student->DRorCR)- {{ $Student->DRorCR }} @endif
{{ __('lng.HouseName') }} {{$Student->housename}}
{{ __('lng.Post') }} - {{ __('lng.Pin') }} {{$Student->post}} - {{$Student->pincode}}
{{ __('lng.Localbody1') }} {{$Student->localbody}}
{{ __('lng.District') }} {{$Student->district}}
{{ __('lng.State') }} {{$Student->state}}
@endsection