{{$book->name}}
-
- @include('partials.entity-search-results')
+ @include('entities.search-results')
{!! nl2br(e($book->description)) !!}
+{!! $book->descriptionHtml() !!}
@if(count($bookChildren) > 0)
@foreach($bookChildren as $childElement)
@if($childElement->isA('chapter'))
- @include('chapters.list-item', ['chapter' => $childElement])
+ @include('chapters.parts.list-item', ['chapter' => $childElement])
@else
- @include('pages.list-item', ['page' => $childElement])
+ @include('pages.parts.list-item', ['page' => $childElement])
@endif
@endforeach
@@ -59,7 +61,7 @@
@endif