middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Contracts\Support\Renderable */ public function index() { $content = view('home'); $response = response($content)->header('Cache-Control', 'no-cache, must-revalidate'); return $response; } }