/**
  * Get all reports for the comments
  *
  * @param Request $request
  * @return \Illuminate\View\View
  */
 public function comments(Request $request)
 {
     $reports = $this->commentReport->all($request->get('q'));
     $postsNum = $this->postReport->count();
     $commentsNum = $this->commentReport->count();
     return $this->view('reports.comments', compact('reports', 'commentsNum', 'postsNum'));
 }