@extends('layouts.app') @section('title', 'Employee Attendance Report') @section('content')
{{ ucfirst($period) }} Report: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}
| 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
|
| No employee attendance data available for the selected period. | |||||||