Closed jgrandar closed 3 years ago
Found a solution, it is not an axios-module problem but a Laravel problem https://stackoverflow.com/a/55117171/4228931
Just need to use POST method on axios.
this.$axios.$post()
and add
formulario.append('_method', 'PATCH')
before sending the FormData()
Post method works fine with FormData() but as soon as I try to send the same form with patch method Laravel dd($request->all()) return an empty array.