I have a route that was working normally and stopped working for no apparent reason. It has the following configuration:
Route::put('/clientes', 'Clientes@update');
The error I get is:
Method Not Allowed
The requested method PUT is not allowed for the URL /clientes/.
If I simply modify the url to:
/ any-thing
It works normally, someone can explain this problem, because it does not make sense to me. When I run the "php artisan routes" command the route is there, but I always get this error. Can someone give me a light?
Note: I already have several routes working in these patterns.