@extends('layouts.user') @section('title', 'Incident Counts Report') @section('content')
Incident Summary Incident Counts Banned Employees Credentials
@for($d = 1; $d <= $days; $d++) @endfor @forelse($reportData as $row) @for($d = 1; $d <= $days; $d++) @endfor @empty @endforelse @for($d = 1; $d <= $days; $d++) @php $colTotal = collect($reportData)->sum(fn($row) => $row['days'][$d]); @endphp @endfor
Site{{ $d }}Total
{{ $row['site'] }} @if($row['days'][$d] > 0) {{ $row['days'][$d] }} @else 0 @endif {{ $row['total'] }}
No sites found.
Totals {{ $colTotal > 0 ? $colTotal : '-' }} {{ collect($reportData)->sum('total') }}
@endsection