2015-11-22 01:22:14 +08:00
|
|
|
|
2018-10-17 01:49:16 +08:00
|
|
|
<div class="entity-list {{ $style ?? '' }}">
|
2016-02-20 20:37:06 +08:00
|
|
|
@if(count($entities) > 0)
|
|
|
|
@foreach($entities as $index => $entity)
|
2018-10-17 01:49:16 +08:00
|
|
|
@include('partials.entity-list-item', ['entity' => $entity])
|
2016-02-20 20:37:06 +08:00
|
|
|
@endforeach
|
|
|
|
@else
|
2016-07-03 17:12:12 +08:00
|
|
|
<p class="text-muted empty-text">
|
2018-10-17 01:49:16 +08:00
|
|
|
{{ $emptyText ?? trans('common.no_items') }}
|
2016-02-20 20:37:06 +08:00
|
|
|
</p>
|
|
|
|
@endif
|
|
|
|
</div>
|