compact changed behaviour on PHP7.3, and I also can't see the need for it as date and incidents are still passed to the view. This resolves #3515
9 lines
244 B
PHP
9 lines
244 B
PHP
@if($stickiedIncidents->isNotEmpty())
|
|
<div class="section-stickied">
|
|
<h1>{{ trans('cachet.incidents.stickied') }}</h1>
|
|
@foreach($stickiedIncidents as $date => $incidents)
|
|
@include('partials.incidents')
|
|
@endforeach
|
|
</div>
|
|
@endif
|