[Vuejs]-Laravel vue.js axios json object extra string appended

0👍

Try returning a bona fide JSON response from Laravel:

return response()->json(['message'=>'Form created']);

Then on your front-end you’ll be able to get your message property from response.data .

Leave a comment