middleware('auth'); //$this->middleware('guest'); } /** * Show the application dashboard to the user. * * @return Response */ public function index() { // count is fake $count = 0; $title = 'Firefly'; $subTitle = 'What\'s playing?'; $mainTitleIcon = 'fa-fire'; return view('index', compact('count', 'title', 'subTitle', 'mainTitleIcon')); } }