subDays($i);
$incidents = Incident::whereRaw('DATE(created_at) = "' . $incidentDate->format('Y-m-d') . '"')->orderBy('created_at', 'desc')->get();
?>
-
{{ $incidentDate->format('jS M Y') }}
@unless($incidents->count() > 0)
- No incidents reported.
@endunless
@foreach($incidents as $incidentID => $incident)
-
{{ $incident->name }}
{{ $incident->message }}
@if($incidentID < ($incident->count() - 1))
@endif
@endforeach