/** * Show the homepage. * * @return \Response */ public function getIndex() { $tricks = $this->tricks->findAllPaginated(); $this->view('home.index', compact('tricks')); }