Laravel路线问题与小写

时间:2015-08-31 10:49:24

标签: php laravel routes laravel-5

我正在尝试设置此路线

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

任何人都可以告诉我为什么会这样,我怎样才能让它适用于小箱?

0 个答案:

没有答案