Employee Time Sheet
JS
John Smith
EMP-101
Department: HR
Designation: Manager
Shift: Shift A
@php
$stats = [
['label' => 'Planned Hours', 'value' => '176h', 'color' => 'text-dark'],
['label' => 'Short Hours', 'value' => '8h', 'color' => 'text-warning'],
['label' => 'Working Days', 'value' => '22', 'color' => 'text-dark'],
['label' => 'Worked Hours', 'value' => '168h', 'color' => 'text-success'],
['label' => 'Absent', 'value' => '1', 'color' => 'text-danger'],
['label' => 'Overtime', 'value' => '4h', 'color' => 'text-primary'],
];
@endphp
@foreach ($stats as $s)
@endforeach
{{ $s['label'] }}
{{ $s['value'] }}
Daily Attendance - {{ now()->format('F Y') }}
| Date | Expected Check In | Check In | Expected Check Out | Check Out | Status | {{--Notes | --}}
|---|---|---|---|---|---|---|
| 2025-03-04 (Mon) | 09:00 | 09:02 | 18:00 | 17:55 | Late | {{--Late by 2 min, Early out by 5 min | --}}
| 2025-03-05 (Tue) | 09:00 | 08:58 | 18:00 | 18:05 | On Time | {{--Overtime 5 min | --}}
| 2025-03-06 (Wed) | 09:00 | — | 18:00 | — | Absent | {{--— | --}}