{{ __('Welcome back') }}, {{ auth()->user()->first_name }}

{{ __('Here\'s what\'s happening with your attendance system today.') }}

{{ __('Total Employees') }}

{{ \App\Models\User::role('employee')->whereDoesntHave('roles', fn($q) => $q->where('name', 'admin'))->count() }}

{{ __('Present Today') }}

{{ \App\Models\Attendance::where('date', today())->where('status', 'present')->count() }}

{{ __('On Break') }}

{{ \App\Models\Attendance::where('date', today())->where('status', 'on_break')->count() }}

{{ __('Completed') }}

{{ \App\Models\Attendance::where('date', today())->whereNotNull('check_out')->count() }}