[Vuejs]-Delete a post with Vue + Laravel + Fetch

0👍

What it worked.. it was this:

fetch('/api/bank/' + id,  {
  method: 'DELETE'
})

0👍

You have to change request method to DELETE while using resource.

In case fetch does not support delete method, try this spoofing trick:

fetch('/api/bank/'+ id + '?_method=delete')

Moreover, I recommend you to use axios in vuejs instead of fetch.

Leave a comment