1 @extends('layouts.export')
3 @section('title', $chapter->name)
7 <h1 style="font-size: 4.8em">{{$chapter->name}}</h1>
8 <div>{!! $chapter->descriptionHtml() !!}</div>
10 @include('exports.parts.chapter-contents-menu', ['pages' => $pages])
12 @foreach($pages as $page)
13 @include('exports.parts.page-item', ['page' => $page, 'chapter' => null])