Skip to content
Advertisement

405 (Method Not Allowed) Laravel

I am getting a 405 (Method Not Allowed) in Laravel while trying to delete an item using ajax. Someone please help.

Here is my route

JavaScript

Here is my ajax code

JavaScript

Here is my controller

JavaScript

Advertisement

Answer

The reason you’re getting this error is because your request URI /blog/destroy doesn’t match the route definition /destroy.

Therefore either change the route to

JavaScript

or change your request

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