commentService->store($request->get('comment'), $article); return redirect()->back()->with('success', __('You comment has been posted!')); } public function destroy(WebsiteArticleComment $comment): RedirectResponse { $this->commentService->destroy($comment); return redirect()->back()->with('success', __('You comment has been deleted!')); } }