@extends('layouts.app') @section('title', 'Membaca: ' . ($currentChapter->title ?? $book->title)) @section('content')
Beranda {{ $book->title }}
SEDANG DIBACA: BAB {{ $currentChapter->chapter_number }}

{{ $currentChapter->title }}

🗂️ Daftar Bab
Materi Modul

{{ $currentChapter->title }}

@if($currentChapter->content) {!! $currentChapter->content !!} @else

Materi bab ini masih dalam proses penulisan oleh dosen.

@endif
@if(isset($prevChapter) && $prevChapter)
Sebelumnya Bab {{ $prevChapter->chapter_number }}
@else @endif @if(isset($nextChapter) && $nextChapter)
Selanjutnya Bab {{ $nextChapter->chapter_number }}
@else 🎉 Selesai Membaca @endif
@endsection