我有參數的路線Laravel 5單路多控制器方法
Route::get('forum/{ques}', "[email protected]");
現在我想的路線類似
Route::get('forum/add', ['middleware' => 'auth:student', 'uses' => "[email protected]"]);
好時,我打localhost:800/forum/add
我被路由到[email protected]
,而不是[email protected]
那麼我知道我可以在ForumQuestionsController
的顯示方法中處理這個問題,並返回基於第mter。但我希望這樣。
好的問題.....喜歡它! –
看看這個http://stackoverflow.com/questions/36203020/laravel-single-route-point-to-different-controller-depending-on-slugs?noredirect=1#comment60056797_36203020 –