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