@extends('layouts.app') @section('title', 'Attendance Dashboard') @section('breadcrumbs')
@endsection @section('content'){{ $today->format('l, d F Y') }} — Today's Overview
| Employee | Department | Clock In | Clock Out | Hours | Status |
|---|---|---|---|---|---|
|
@if($emp->profile_photo)
{{ $emp->full_name }}
{{ $emp->employee_code }}
|
{{ $emp->department?->name ?? '—' }} | @if($record && $record->clock_in) {{ $record->formatted_clock_in }} @if($record->is_late) {{ $record->late_minutes }}m late @endif @else — @endif | {{ $record ? $record->formatted_clock_out : '—' }} | {{ $record ? $record->formatted_total_hours : '—' }} | @if($record) {{ $record->status_label }} @else No Record @endif |
|
No employees found
No active employees match the selected filters. |
|||||