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

{{$book->name}}

{{$book->description}}

Pages

+ New Page
@if(count($book->pages) > 0) @foreach($book->pages as $page) {{$page->name}} @endforeach @else

This book has no pages

@endif

@stop