我正在尝试设置此路线
http://test.localhost.com/doctor/updateschedule
我在Routes文件中的代码是
Route::resource('/doctor/updateschedule', 'Doctor\DoctorController@doctorSchedule');
但这不起作用,只有在我使用大写
时才有效http://test.localhost.com/Doctor/updateschedule
在路线中,
Route::resource('/Doctor/updateschedule', 'Doctor\DoctorController@doctorSchedule');
Controller的动作中没有任何内容,只是回显“Hello”。 它只适用于大写 / Doctor / updateschedule
任何人都可以告诉我为什么会这样,我怎样才能让它适用于小箱?