@extends('layouts.adminapp') @section('content')
| {{ __('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 |