- $comment = $this->commentRepo->create($page, $request->only(['html', 'text', 'parent_id']));
- Activity::add($page, 'commented_on', $page->book->id);
- return view('comments/comment', ['comment' => $comment]);
+ $comment = $this->commentRepo->create($page, $request->get('text'), $request->get('parent_id'));
+ return view('comments.comment', ['comment' => $comment]);