@extends('layouts.adminapp') @section('content')

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

@error('batch_id') {{ $message }} @enderror
@error('batch_id') {{ $message }} @enderror
{{-- --}} @php $si = 0; @endphp @foreach ($StudentAttendances as $StudentAttendance) @php $Student=App\Models\Student::where('admission_no',$StudentAttendance->AdmissionNo)->first(); @endphp @if ($Student) @endif @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Name') }} {{ __('lng.InTime') }} {{ __('lng.OutTime') }}Actions
{{ ++$si }} {{ $Student->name ?? '' }} @if ($StudentAttendance->InTime) {{ date_format(date_create($StudentAttendance->InTime), 'd-m-Y H:i:s') }} @endif @if ($StudentAttendance->OutTime) {{ date_format(date_create($StudentAttendance->OutTime), 'd-m-Y H:i:s') }} @endif
@csrf
@endsection