@extends('layouts.app') @section('title', 'Membaca: ' . $book->title) @section('content')
Beranda {{ $book->title }}

{{ $book->title }}

Bab {{ $currentChapter->chapter_number ?? '1' }}: {{ $currentChapter->title ?? 'Materi Utama' }}

Semua Bab
Materi Pembelajaran

{{ $currentChapter->title ?? $book->title }}

@if(isset($currentChapter) && $currentChapter->content) {!! nl2br(e($currentChapter->content)) !!} @else {{-- Fallback jika isi buku diletakkan langsung di tabel books --}} {!! nl2br(e($book->description ?? $book->content ?? 'Konten materi belum diunggah atau masih kosong.')) !!} @endif
@if(isset($prevChapter) && $prevChapter)
Sebelumnya Bab {{ $prevChapter->chapter_number }}
@else {{-- Spacer --}} @endif @if(isset($nextChapter) && $nextChapter)
Selanjutnya Bab {{ $nextChapter->chapter_number }}
@else Selesai Belajar @endif
@endsection