What I did
RepositoryResponseNow, from the backend, I am returning a downloadable Excel file as
return Excel::download($report, 'coupons-report.xlsx');
What I see
The server response comes correctly and this is what I need to have. But when I log the response in the function, it comes empty.
Here is an image of what I mean
The top response is the "raw" response (my target). However, the below one is the one I am getting when I return the response from this.$axios.get.
My question is how can I get the data on the top?