middleware('auth'); }*/ /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { if (auth()->user()) { return redirect(route('home')); } return view('index'); } public function home() { return view('home'); } }