目前我正在为我的自定义级别视图使用这种路由格式:
Route::group(['prefix' => 'customers/{customer_id}'], function(){
Route::group(['prefix' => 'orders'], function(){
Route::get('/', 'controllers\EndUser\Accounting\OrderController@getList');
Route::get('/{id}', 'controllers\EndUser\Accounting\OrderController@getView');
});
});
如果您注意到,我使用的是全局“customer_id”,而对于我的子页面,我使用了“id”。我需要将“customer_id”传递给每个控制器和控制器中的每个函数,最干净的方法是什么?