@extends('backend.layouts.master') {{-- Use your custom layout file --}} @section('content') @push('styles') @endpush
Total Students: {{ $totalStudents ?? '0' }}
Present Count: {{ $presentCount ?? '0' }}
Late Count: {{ $lateCount ?? '0' }}
Absent Count: {{ $absentCount ?? '0' }}
| # | Enrollment No | Employee Name | Log Date | Log Time | Device Name | Device No | Entry Status |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($student_attendance->currentPage() - 1) * $student_attendance->perPage() }} | {{ $user->enrollment_no }} | {{ $user->student_name }} | {{ $user->log_date }} | {{ \Carbon\Carbon::parse($user->log_date_time)->format('H:i:s') }} | {{ $user->device_name }} | {{ $user->device_no }} | @if($user->entry_status == 'Present') @elseif($user->entry_status == 'Late Coming') @else @endif |
| No attendance found. | |||||||