@extends('export-layout')
@section('title', $chapter->name)
@section('content')
{{$chapter->name}}
{{ $chapter->description }}
@if(count($pages) > 0)
@foreach($pages as $page)
- {{ $page->name }}
@endforeach
@endif
@foreach($pages as $page)
{{ $page->name }}
{!! $page->html !!}
@endforeach
@endsection