奇怪的命名路由与资源路由和参数 - Laravel

时间:2015-10-29 07:53:14

标签: php laravel laravel-5.1

我有这条路线资源:

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

0 个答案:

没有答案