middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { return view('home'); } public function needauth() { return view('needauth'); } public function authneed() { return view('authneed'); } }