Do not save to database
Help me understand my error
Controller
public function store(Request $request) { $item = Cart::where('product_id', $request->product_id); if ($item->count()) { $item->increment('quantity'); $item = $item->first(); } else { $item = Cart::forceCreate([ 'product_id' => $request->product_id, 'quantity' => 1, ]); } return response()->json([ 'quantity' => $item->quantity, 'product' => $item->product ]); }
shop
addProductToCart (product, quantity) { axios.post('http://127.0.0.1:8000/api/cart', { product_id: product.id, quantity }) },
Items are not added to the database when the addItems (for example) button is clicked
My mutation happens to be in the wrong module