public function index()
 {
     $items = Item::onlyTrashed()->where('user_id', \Auth::user()->id)->get();
     //$items = Item::onlyTrashed()->get();
     return view('restore.index', compact('items'));
 }