]> BookStack Code Mirror - bookstack/blob - resources/views/search/entity-ajax-list.blade.php
Update components.php
[bookstack] / resources / views / search / entity-ajax-list.blade.php
1 <div class="entity-list">
2     @if(count($entities) > 0)
3         @foreach($entities as $index => $entity)
4
5             @include('partials.entity-list-item', ['entity' => $entity, 'showPath' => true])
6             @if($index !== count($entities) - 1)
7                 <hr>
8             @endif
9
10         @endforeach
11     @else
12         <p class="text-muted text-large p-xl">
13             {{ trans('common.no_items') }}
14         </p>
15     @endif
16 </div>