/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $items = Items::latest()->get();
     return view('item.index', compact('items'));
 }