mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
10 lines
323 B
PHP
10 lines
323 B
PHP
|
<div class="page-break"></div>
|
||
|
<h1 id="chapter-{{$chapter->id}}">{{ $chapter->name }}</h1>
|
||
|
|
||
|
<p>{{ $chapter->description }}</p>
|
||
|
|
||
|
@if(count($chapter->visible_pages) > 0)
|
||
|
@foreach($chapter->visible_pages as $page)
|
||
|
@include('exports.parts.page-item', ['page' => $page, 'chapter' => $chapter])
|
||
|
@endforeach
|
||
|
@endif
|