Skip to content
Advertisement

ArgumentCountError Too few arguments to function AppHttpControllersShopCartController::addToCart()

So this function is supposed to add the product into a cart, but i’ve been getting the error

Too few arguments to function AppHttpControllersShopCartController::addToCart(), 0 passed in C:xampphtdocsnerdSvendorlaravelframeworksrcIlluminateRoutingController.php on line 54 and exactly 1 expected

I tried changing key words here and there on my controller, but nothing seems to do it. This is the the controller:

JavaScript

My model for products:

JavaScript

The page view:

JavaScript

and my route:

JavaScript

Advertisement

Answer

You need to pass the $product->id in the form action’s url(). That route parameter needs to be there so that it is received in the addToCart method in controller

JavaScript

And you have declared your route as get instead of post. Following restful conventions your route should be declared as a post route

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement