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

Report Period

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

Employee Incident Statistics

@forelse($employeeStats as $emp) @empty @endforelse
Employee Name Employee ID Department Total Reported Total Assigned Critical Reported Injury Reported
{{ $emp['name'] }}
{{ $emp['employee_id'] }}
{{ $emp['department'] }}
{{ $emp['total_reported'] }}
{{ $emp['total_assigned'] }}
{{ $emp['critical_reported'] }} {{ $emp['injury_reported'] }}
No incidents found for the selected period.
@endsection