@extends('layouts.app')
@section('title', 'Scriptu | ' . $chapter->title)
@section('content')
{{ $chapter->title }}
@foreach($chapter->chapters as $chapter)
{{ $chapter->title }}
{{ $chapter->content }}
@endforeach
@php
$showSidebar = true;
$showTopicsSidebar = false;
@endphp
@endsection