@extends('layouts.app') @section('title', 'Employee Attendance Report') @section('content')

Report Period

{{ ucfirst($period) }} Report: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}

Employee Attendance Statistics

@forelse($employeeStats as $emp) @empty @endforelse
Employee Employee ID Department Total Talks Present Absent Late Attendance Rate
{{ $emp['name'] }}
{{ $emp['employee_id'] }}
{{ $emp['department'] }}
{{ $emp['total_talks'] }}
{{ $emp['present'] }} {{ $emp['absent'] }} {{ $emp['late'] }}
@if($emp['attendance_rate'] > 10) {{ number_format($emp['attendance_rate'], 1) }}% @endif
{{ number_format($emp['attendance_rate'], 2) }}%
No employee attendance data available for the selected period.
@endsection