Files
cachet-docker/resources/views/partials/modules/stickied.blade.php
2018-06-25 21:48:27 +01:00

9 lines
283 B
PHP

@if($stickiedIncidents->isNotEmpty())
<div class="section-stickied">
<h1>{{ trans('cachet.incidents.stickied') }}</h1>
@foreach($stickiedIncidents as $date => $incidents)
@include('partials.incidents', [compact($date), compact($incidents)])
@endforeach
</div>
@endif