BookStack/resources/views/search/entity-ajax-list.blade.php

22 lines
773 B
PHP
Raw Normal View History

<div class="entity-list @if(isset($style)){{ $style }}@endif">
2016-07-03 08:58:45 +00:00
@if(count($entities) > 0)
@foreach($entities as $index => $entity)
@if($entity->isA('page'))
@include('pages/list-item', ['page' => $entity, 'showPath' => true])
2016-07-03 08:58:45 +00:00
@elseif($entity->isA('book'))
@include('books/list-item', ['book' => $entity])
@elseif($entity->isA('chapter'))
@include('chapters/list-item', ['chapter' => $entity, 'hidePages' => true, 'showPath' => true])
@endif
@if($index !== count($entities) - 1)
<hr>
@endif
@endforeach
@else
<p class="text-muted">
2016-12-04 14:08:04 +00:00
{{ trans('common.no_items') }}
2016-07-03 08:58:45 +00:00
</p>
@endif
</div>