2022-06-08 12:56:59 -04:00
|
|
|
@extends('layouts.export')
|
|
|
|
|
|
|
|
@section('title', $book->name)
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<h1 style="font-size: 4.8em">{{$book->name}}</h1>
|
2023-12-22 09:57:20 -05:00
|
|
|
<div>{!! $book->descriptionHtml() !!}</div>
|
2022-06-08 12:56:59 -04:00
|
|
|
|
|
|
|
@include('exports.parts.book-contents-menu', ['children' => $bookChildren])
|
|
|
|
|
|
|
|
@foreach($bookChildren as $bookChild)
|
|
|
|
@if($bookChild->isA('chapter'))
|
|
|
|
@include('exports.parts.chapter-item', ['chapter' => $bookChild])
|
|
|
|
@else
|
|
|
|
@include('exports.parts.page-item', ['page' => $bookChild, 'chapter' => null])
|
|
|
|
@endif
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
@endsection
|