Post method not allowing data in body request Laravel 9 (postman)
I've created an api an it works however there is a weird behavior it doesnt allow me to send data in the body of the request. Here's my code: api.php Route::controller(AuthController::class)->group(function () { Route::post('login', 'login'); Route::post('register', 'register'); Route::post('logout', 'logout'); Route::post('refresh',…