I'm trying to make a simple POST using VueJS 2 (with axios) and Laravel 5.3. My method always returns an empty array when I try to print $request->all()
.
I have the following meta tag in my blade template:
<meta name="csrf-token" content="{{ csrf_token() }}">
I'm loading axios and adding the X-CSRF tag to it in bootstrap.js:
window.Vue = require('vue');
window.axios = require('axios');
require('vue-axios');
window.axios.defaults.headers.common['X-CSRF-Token'] = document.querySelector('meta[name="csrf-token"]').getAttribute('content')
And this is my Vue component (narrowed it down for clarity):
<template>
<div class="options">
<div class="save-result" @click="saveResult()">
Save result
</div>
</div>
</template>
<script>
export default {
methods: {
saveResult: function() {
axios.post('/api/user/save-results', {'test': 'testing'}).then(response => {
console.log(response.message)
})
}
}
}
</script>
This route leads to a very simple controller where I'm just printing my request, which is empty.
public function saveResults(Request $request)
{
echo '<pre>'; print_r($request->all()) and die();
}
I'm guessing something is missing with my CSRF header setup, but I'm not sure what it might be.