/**
  * Retrieves a list of the most recently updated discussions.
  *
  * @return mixed
  */
 public function index()
 {
     $discussions = $this->discussions->getRecent();
     $categoryCount = $this->categories->count();
     return $this->respond('home.index', compact('discussions', 'categoryCount'));
 }