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

{{ $Student->name }}'s Attendance

{{-- --}} {{-- --}} @php $si = 0; @endphp @foreach ($Student->studentattendances as $StudentAttendance) {{-- --}} @endforeach
{{ __('lng.SiNo') }}{{ __('lng.Name') }}{{ __('lng.InTime') }} {{ __('lng.OutTime') }}Actions
{{ ++$si }} {{ $Student->admission_no ?? '' }} @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
@endsection