@extends('base') @section('content')
@if($currentUser->can('chapter-create')) New Page @endif @if($currentUser->can('chapter-update')) Edit @endif @if($currentUser->can('chapter-delete')) Delete @endif
@include('pages/sidebar-tree-list', ['book' => $book])

{{ $chapter->name }}

{{ $chapter->description }}

@if(count($chapter->pages) > 0)

@foreach($chapter->pages as $page)

{{ $page->name }}

{{$page->getExcerpt(180)}}


@endforeach
@else

No pages are in this chapter

@endif

Created {{$chapter->created_at->diffForHumans()}} @if($chapter->createdBy) by {{$chapter->createdBy->name}} @endif
Last Updated {{$chapter->updated_at->diffForHumans()}} @if($chapter->createdBy) by {{$chapter->updatedBy->name}} @endif

@stop