I am trying to send a delete request via axios to laravel as follow:
axios.delete(\'api/users/\' + this.checkedNames) .then((response) => { console.log
I also experienced the same problem. This works for me:
deletePost: function(id) { axios.post('/posts/'+id,{_method: 'delete'}) }
Using axios.post() instead of axios.delete, and sending _method "delete"
axios.post()
axios.delete
_method