middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function index() { $items = \App\Item::where('userID'); return view('home', compact('items')); } }