{{ $book->title }}

@if($book->description)

{{ $book->description }}

@endif

{{ $book->chapter_count }} Chapters | {{ number_format($book->total_word_count) }} Words

Created: {{ $book->created_at->format('F j, Y') }}

Table of Contents

@foreach($book->chapters as $chapter)

Chapter {{ $chapter->order }}: {{ $chapter->title }}

{{ $chapter->content }}
@endforeach

Generated by BookDash on {{ now()->format('F j, Y \a\t g:i A') }}