send(); } parent::__construct($route); } /** * Display a listing of the resource. * * @return Response */ public function index() { $paid = $this->getPaidModules(); $new = $this->getNewModules(); $free = $this->getFreeModules(); return view('modules.home.index', compact('paid', 'new', 'free')); } }