我需要在此项目中仅构建特定函数的API,并且我正在使用Insomnia进行测试。但是在尝试发送请求时,应用程序将抛出MethodNotAllowedHttpException
。
我已经设置了以下路线:
Route::post('/backend/users/store', 'ClientUserController@insert')->name('cms.users.store');
在ClientUserController
中,我将insert
方法配置为允许作为访客:
$this->middleware('auth', [ 'except' => [ 'insert' ] ]);
然后我只是在软件中设置了URL并尝试发送请求,导致抛出异常。