2022-06-09 00:56:59 +08:00
|
|
|
<div class="page-break"></div>
|
|
|
|
<h1 id="chapter-{{$chapter->id}}">{{ $chapter->name }}</h1>
|
|
|
|
|
2023-12-22 22:57:20 +08:00
|
|
|
<div>{!! $chapter->descriptionHtml() !!}</div>
|
2022-06-09 00:56:59 +08:00
|
|
|
|
|
|
|
@if(count($chapter->visible_pages) > 0)
|
|
|
|
@foreach($chapter->visible_pages as $page)
|
|
|
|
@include('exports.parts.page-item', ['page' => $page, 'chapter' => $chapter])
|
|
|
|
@endforeach
|
|
|
|
@endif
|