@extends('layouts.adminapp') @section('title') {{ __('lng.LeaveStudent') }} @endsection @section('active_student', 'active') @section('open_student', 'open') @section('active_leave_student', 'active') @section('content')

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

{{ __('lng.LeaveStudentTable') }}
@if ($SearchResult) @php echo $SearchResult @endphp @else
@php $si=0; @endphp @foreach ($Students as $Student) @php $dob = date("d-m-Y",strtotime($Student->dob));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.Class') }} {{ __('lng.DOB') }} {{ __('lng.HouseName') }} {{ __('lng.Place') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $Student->name }} {{ $Student->Class->title ?? 'Pass Out' }} {{ $dob }} {{ $Student->housename }} {{ $Student->place }} {{ __('lng.Leave') }}

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

@endif
@endsection