2015-09-01 10:35:11 -04:00
|
|
|
<div class="page-list">
|
|
|
|
@if(count($pages) > 0)
|
2015-09-03 14:05:45 -04:00
|
|
|
@foreach($pages as $pageIndex => $page)
|
|
|
|
<div class="anim searchResult" style="animation-delay: {{$pageIndex*50 . 'ms'}};">
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('pages.list-item', ['page' => $page])
|
2015-09-01 10:35:11 -04:00
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
@else
|
2016-12-04 09:08:04 -05:00
|
|
|
<p class="text-muted">{{ trans('entities.search_no_pages') }}</p>
|
2015-09-01 10:35:11 -04:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@if(count($chapters) > 0)
|
|
|
|
<div class="page-list">
|
2015-09-03 14:05:45 -04:00
|
|
|
@foreach($chapters as $chapterIndex => $chapter)
|
|
|
|
<div class="anim searchResult" style="animation-delay: {{($chapterIndex+count($pages))*50 . 'ms'}};">
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('chapters.list-item', ['chapter' => $chapter, 'hidePages' => true])
|
2015-09-01 10:35:11 -04:00
|
|
|
<hr>
|
|
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|