+ /**
+ * Shows the page to confirm deletion
+ * @param $bookSlug
+ * @return \Illuminate\View\View
+ */
+ public function showDelete($bookSlug)
+ {
+ $this->checkPermission('book-delete');
+ $book = $this->bookRepo->getBySlug($bookSlug);
+ return view('books/delete', ['book' => $book, 'current' => $book]);
+ }
+