@extends('layouts.adminapp') @section('title') {{ __('lng.StudentReport') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_student_report', 'open') @section('active_student_report', 'active') @section('active_student_report_index', 'active') @section('content')

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

{{ __('lng.StudentReport') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $i=0;@endphp @foreach ($Students as $Student) @php $dob = date("m-d-Y",strtotime($Student->dob));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Photo') }} {{ __('lng.Name') }} {{ __('lng.Class') }} {{ __('lng.BatchYear') }} {{ __('lng.DOB') }} {{ __('lng.Contact') }} {{ __('lng.HouseName') }} {{ __('lng.Guardian') }} {{ __('lng.Gender') }} {{ __('lng.Place') }} {{ __('lng.Action') }}
{{ ++$i }} {{ $Student->name }} {{ $Student->class->title ?? __('lng.PassOut') }} {{ $Student->batch_year }} {{ $dob }} {{ $Student->mobile }} {{ $Student->housename }} {{ $Student->guardian }} {{ $Student->gender }} {{ $Student->place }}

{{ __('lng.Showing') }} {{ $Students->count() }} {{ __('lng.Items') }}

@endif
@endsection