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