我希望这是我刚刚在文档中忽略的一个简单情况。我正在重构我们的Web应用程序以在url中使用slug。我们公司允许许多组织注册,每个组织都有自己的页面和子页面。我正在尝试完成以下内容:Route::get('/{organization-slug}','OrganizationController@index');Route::get('/{organization-slug}/{organization-subpage-slug}','OrganizationController@subpage');Route::get('/','IndexController@index');Rou