/**
  * Display a listing of the Comment.
  *
  * @return Response
  */
 public function index()
 {
     $comments = $this->commentRepository->paginate(10);
     return view('comments.index')->with('comments', $comments);
 }