@extends('layouts.employee') @section('content')
Track your daily attendance and working hours
Present Days This Month
Late Days This Month
Total Hours This Month
Average Hours/Day
| Date | Clock In | Clock Out | Break Time | Total Hours | Status | Method |
|---|---|---|---|---|---|---|
|
{{ $record->date->format('M j, Y') }}
{{ $record->date->format('l') }} |
{{ $record->clock_in ? $record->clock_in->format('H:i') : '--' }} | {{ $record->clock_out ? $record->clock_out->format('H:i') : '--' }} | {{ $record->break_duration ? number_format($record->break_duration / 60, 1) . 'h' : '--' }} |
{{ $record->total_hours ? number_format($record->total_hours, 1) . 'h' : '--' }}
@if($record->overtime_hours > 0)
OT: {{ number_format($record->overtime_hours, 1) }}h @endif |
@if($record->status === 'present') Present @elseif($record->status === 'late') Late @elseif($record->status === 'absent') Absent @else {{ ucfirst($record->status) }} @endif | {{ ucfirst($record->clock_in_method ?? 'N/A') }} |
Your attendance records will appear here once you start clocking in.