我遇到了这个问题,如果我在第一个路由中定义一个参数,第二个会抛出这个错误:
“路由模式“/browse/{brand}/{{brand}}”不能多次引用变量名“brand”。
Route::resource('browse/{brand}', 'BrowseController');
Route::group(array('prefix' => 'service'), function() {
Route::resource('authenticate', 'AuthenticationController');
});
如果我取出参数,当然会破坏浏览路线,但是身份验证路线有效。
有谁知道这是什么原因?