我想在烘焙后默认阻止所有控制器的路线/操作。因此,如果我为users
运行bake命令,我将无法在未明确允许的情况下访问http://localhost:8765/users/index/
(最好在routes.php中)。
我知道我可以在烘焙后手动添加:
`$routes->resources(
'Users', [
'only' => [
]
]
);`
但我希望它默认会被阻止,并且将来我可以根据需要公开它。
答案 0 :(得分:0)
所以你想要extend bake? It's a large topic, but it allows fine control over the generated code.。
在您的情况下,您可能只想使用find / replace,除非您经常这样做。