xuecong 4年前

修改理由:

找不到控制器

此投稿状态为 标记为已读

内容修改:

红色背景 为原始内容

绿色背景 为新增或者修改的内容

OldNewDifferences
139139
140140Route::prefix('v1')->name('api.v1.')->group(function () {
141141   // 短信验证码
142    Route::post('verificationCodes', 'VerificationCodesController@store')
 142   Route::post('verificationCodes', 'Api\VerificationCodesController@store')
143143       ->name('verificationCodes.store');
144144});
145145```