+ $validated = $this->validate($request, [
+ 'name' => ['required', 'string', 'max:255'],
+ 'description_html' => ['string', 'max:2000'],
+ 'tags' => ['array'],
+ 'default_template_id' => ['nullable', 'integer'],
+ ]);
+
+ $chapter = $this->queries->findVisibleBySlugsOrFail($bookSlug, $chapterSlug);