[Vuejs]-Axios get data not displaying in vuejs template v-for list

0👍

So in the laravel api controller I had:

"return response()-> json(['data' => DiloRole::all()]);"

which should have been:

"return response(DiloRole::all());"

Leave a comment