public function delete($id)
 {
     $item = new Customer($id);
     $item->delete();
     return redirect('item');
 }