@extends('layouts.app') @section('title', 'Attendance Logs') @section('subtitle', 'View and manage attendance records') @section('content')
View and manage employee attendance records
Total Logs
{{ $stats['total_logs'] }}
Clock Ins
{{ $stats['clock_ins'] }}
Clock Outs
{{ $stats['clock_outs'] }}
Employees
{{ $stats['unique_employees'] }}
Today
{{ $stats['today_logs'] }}
This Week
{{ $stats['this_week_logs'] }}
This Month
{{ $stats['this_month_logs'] }}
| Date & Time | Employee | Action | Actions | |||
|---|---|---|---|---|---|---|
|
{{ $log->timestamp->format('M d, Y') }}
{{ $log->timestamp->format('H:i:s') }}
|
@if($log->user->image)
{{ $log->user->initials }}
@endif
{{ $log->user->full_name }}
{{ $log->user->employee_id }}
|
@if($log->action === 'clock_in') Clock In @else Clock Out @endif | ||||
|
No attendance logs found Try adjusting your filters or check back later |
||||||