2019-03-30 17:54:15 +01:00
|
|
|
<div class="entity-list">
|
2016-07-03 10:58:45 +02:00
|
|
|
@if(count($entities) > 0)
|
|
|
|
@foreach($entities as $index => $entity)
|
|
|
|
|
2019-03-30 17:54:15 +01:00
|
|
|
@include('partials.entity-list-item', ['entity' => $entity, 'showPath' => true])
|
2016-07-03 10:58:45 +02:00
|
|
|
@if($index !== count($entities) - 1)
|
|
|
|
<hr>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
@else
|
2019-03-30 17:54:15 +01:00
|
|
|
<p class="text-muted text-large p-xl">
|
2016-12-04 15:08:04 +01:00
|
|
|
{{ trans('common.no_items') }}
|
2016-07-03 10:58:45 +02:00
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
</div>
|