setAdminPrefs(); $meta_title = $title = 'Comments List'; $commentsList = ReleaseComment::getCommentsRange(); $this->smarty->assign('commentslist', $commentsList); $content = $this->smarty->fetch('comments-list.tpl'); $this->smarty->assign(compact('title', 'meta_title', 'content')); $this->adminrender(); } /** * @param int $id * @return \Illuminate\Http\RedirectResponse */ public function destroy(int $id): \Illuminate\Http\RedirectResponse { if ($id) { ReleaseComment::deleteComment($id); } return redirect()->back(); } }