это моя проблема:
При создании запроса POST с помощью «Request :: create» к моему собственному API, конечная точка не захватывает поля
MyController. php
class MyController extends Controller {
function myendpoint(Request $request){
return $request->all();
}
function tester(){
$myRequest = Request::create('/api/myendpoint', 'POST', [
'email' => 'email@email.com',
'password' =>'asdasdad'
]);
$response = Route::dispatch($myRequest);
print_r( $response->getData() );
}
...
API маршрутизации. php
Route::post('myendpoint', 'MyController@myendpoint');
Route::get('tester', 'MyController@tester');
Посещение mydomain.com/api/tester возвращает
Array ( )
Пожалуйста, помогите, я не понимаю, что произошло .