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

Report Period

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

Company Incident Statistics

@forelse($companyStats as $comp) @empty @endforelse
Company Total Incidents Open Closed Critical Injury/Illness
{{ $comp['name'] }}
{{ $comp['total_incidents'] }}
{{ $comp['open'] }} {{ $comp['closed'] }} {{ $comp['critical'] }} {{ $comp['injury'] }}
No incidents found for the selected period.
@endsection