Skip to content
Advertisement

The “PUT method is not supported for this route” error comes up after jquery ajax update

I update the database with jquery ajax and print “success/failure” with alert according to the return value. The product update is successful, but the message “failed” appears on the screen and I get the error “The PUT method is not supported for this route”.

My jquery:

JavaScript

url:

JavaScript

coming here by route:

JavaScript

Advertisement

Answer

Change the method to POST.

JavaScript

Considering that csrf token is not been included in the headers yet, you must include it on form data:

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