subDays($i);
$incidents = Incident::where('created_at', $incidentDate)->get()
?>
{{ $incidentDate->format('jS M, Y') }}
@if($incidents->count() === 0)
- No incidents reported.
@else
@foreach($incidents as $incident)
-
{{ $incident->name }}
{{ $incident->message }}
@endforeach
@endif