Exemplo n.º 1
0
 /**
  * List comments.
  *
  * @return Response
  */
 public function index()
 {
     $comments = $this->commentRepository->getUserComments();
     return view('Front::comment.comments', ['comments' => $comments]);
 }