Hello @marshalbagisto
Status Codes are not sent inside the response they were handled by Laravel and Axios
For 200 - return response()->json([|
'data' => $categories
], 200);
For 500 - return response()->json([|
'message' => 'Someting went wrong'
], 500);
and in your screenshot, we have marked, that your status code will be visible at this point as shown in the image below.
rtmmti.png
Thanks & Regards