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

{{ $chapter->name }}

{{ $chapter->description }}

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

Pages

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

{{ $page->name }}


@endforeach
@endif
@stop