I need ability when delete one $item from cart to delete also prevous or the next item...
so :
Cart::remove()
To remove an item for the cart, you'll again need the rowId. This rowId you simply pass to the remove() method and it will remove the item from the cart.
class CartController extends Controller
{
public function remove($item_id)
{
\Cart::remove($item_id);
// flash("Your item has been removed");
return back();
}
}