考虑以下代码:
Route::group(array('prefix' => 'admin', 'before' => 'auth'), function() {
Route::controller('articles', 'ArticlesController');
});
当用户访问http://localhost/admin/articles/edit
时,Laravel能够解析Uri并执行ArticleController::anyEdit
。如果网址为http://localhost/admin/articles
,则会选择ArticleController::getIndex
。
是否有任何好的方法相关的令牌(管理员/,文章,编辑和管理员/文章,索引)没有重新实现所有逻辑?
提前感谢您的帮助!