| {{ __('lng.SiNo') }} |
{{ __('lng.AdmissionNo') }} |
{{ __('lng.Name') }} |
{{ __('lng.Date') }} |
{{ __('lng.InTime') }} |
{{ __('lng.OutTime') }} |
{{-- Actions | --}}
@php $si = 0; @endphp
@foreach ($StudentAttendances as $StudentAttendance)
@php $Student=App\Models\Student::where('admission_no',$StudentAttendance->AdmissionNo)->first(); @endphp
@if ($Student)
|
{{ ++$si }}
|
{{ $Student->admission_no ?? '' }}
|
{{ $Student->name ?? '' }}
|
@if ($StudentAttendance->AttendanceDate)
{{ date_format(date_create($StudentAttendance->AttendanceDate), 'd-m-Y') }}
@endif
|
{{ $StudentAttendance->InTime }}
|
{{ $StudentAttendance->OutTime }}
|
@endif
@endforeach
Showing {{ $StudentAttendances->count() }}