@extends('layouts.app') @section('title', 'Attendance Management') @section('breadcrumbs') @endsection @section('content')

Attendance Management

Track employee check-in and check-out

Total Employees

45

Present

42

Absent

2

Late

1

@for ($i = 0; $i < 15; $i++) @endfor
Employee Department Check-in Check-out Hours Status Actions
Employee Employee {{ $i + 1 }}
Front Desk 09:00 AM 05:30 PM 8.5 hrs @if ($i % 7 === 0) Absent @elseif ($i % 8 === 0) Late @else Present @endif

Showing 1 to 15 of 45 employees

@endsection