• 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 $incident)

    {{ $incident->name }}

    {{ $incident->message }}

    @endforeach