0👍
So in the laravel api controller I had:
"return response()-> json(['data' => DiloRole::all()]);"
which should have been:
"return response(DiloRole::all());"
Source:stackexchange.com
0👍
So in the laravel api controller I had:
"return response()-> json(['data' => DiloRole::all()]);"
which should have been:
"return response(DiloRole::all());"