middleware('guest'); } /** * Show the application welcome screen to the user. * * @return Response */ public function index() { $data = array('name' => 'San Juan', 'date' => date('Y-m-d')); return view('welcome')->with($data); } }