Fix missing $date variable

This commit is contained in:
James Brooks 2015-04-23 08:12:42 +01:00
parent cbf59b9b78
commit 26642eb573

View File

@ -34,8 +34,8 @@
@endif
<h1>{{ trans('cachet.incidents.past') }}</h1>
@foreach($allIncidents as $incidents)
@include('partials.incidents', $incidents)
@foreach($allIncidents as $date => $incidents)
@include('partials.incidents', [compact($date), compact($incidents)])
@endforeach
<hr>