So I am making axios post request to Laravel controller:
return axios.post('/create',
{
data: {...currentSettings},
},
{
headers: {
'Accept': 'application/json'
}}).then(response => {
console.log(response.data);
});
And Controller should return json response:
return response()->json([
'data' => $data,
]);
But somehow in response I receive text/html
And also Response headers says this:

Cant find solution to fix this.. Would appreciate some help