]> BookStack Code Mirror - bookstack/blob - resources/views/entities/list.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / entities / list.blade.php
1 @if(count($entities) > 0)
2     <div class="entity-list {{ $style ?? '' }}">
3         @foreach($entities as $index => $entity)
4             @include('entities.list-item', ['entity' => $entity, 'showPath' => $showPath ?? false, 'showTags' => $showTags ?? false])
5         @endforeach
6     </div>
7 @else
8     <p class="text-muted empty-text pb-l mb-none">
9         {{ $emptyText ?? trans('common.no_items') }}
10     </p>
11 @endif