$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
$this->validate($request, [
'name' => 'required|string|max:255',
'description' => 'string|max:1000',
*/
public function destroy(string $bookSlug)
{
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-delete', $book);
*/
public function destroy(string $bookSlug)
{
$book = $this->bookRepo->getBySlug($bookSlug);
$this->checkOwnablePermission('book-delete', $book);