@extends('layouts.adminapp') @section('content') {{-- Student --}}

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

{{-- --}}
{{-- --}} @php $si = 0; @endphp @foreach ($Students as $Student) @endforeach
{{ __('lng.SiNo') }} {{ __('lng.AdmissionNo') }} {{ __('lng.Name') }} {{ __('lng.Date') }} {{ __('lng.InTime') }} {{ __('lng.OutTime') }}Actions
{{ ++$si }} {{ $Student->AdmissionNo }} {{ $Student->Name }} @if ($Student->Date) {{ date_format(date_create($Student->Date), 'd-m-Y') }} @endif {{ $Student->In }} {{ $Student->Out }}
{{--
{{ __('lng.Showing') }} {{ $Students->count() }}
--}}
@csrf
@endsection