我有这条路线资源:
Route::resource('{module_slug}/post', 'Backend\PostController');
这会产生如下路线:
cms.{module_slug}.post.index
我应该被名字中的{module_slug}打扰吗?
我更喜欢像 cms.module.post.index 这样的内容。
我发现我可以用以下方式重命名:
'names' => [
'index' => 'cms.module.post.index'
]
这是要走的路吗?我用的时候:
'as' => 'module.post'
我得到的资源: module.post.cms。{module_slug} .post.index