@extends('layouts.app', ['path' => 'attendance.timesheet']) @section('content')

Employee Time Sheet

@include('partials.alerts')
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)
{{ $s['label'] }}

{{ $s['value'] }}

@endforeach
Daily Attendance - {{ now()->format('F Y') }}
{{-- --}} {{-- --}} {{-- --}} {{-- --}}
Date Expected Check In Check In Expected Check Out Check Out StatusNotes
2025-03-04 (Mon) 09:00 09:02 18:00 17:55 LateLate by 2 min, Early out by 5 min
2025-03-05 (Tue) 09:00 08:58 18:00 18:05 On TimeOvertime 5 min
2025-03-06 (Wed) 09:00 18:00 Absent
@endsection