@extends('base') @section('content')

{{$book->name}}

{{$book->description}}

Contents

@foreach($book->children() as $childElement)
@if(is_a($childElement, 'Oxbow\Chapter')) @else @endif {{$childElement->name}}
@endforeach
{{--@include('pages/page-tree-list', ['pageTree' => $pageTree])--}}
@stop