-
-
Notifications
You must be signed in to change notification settings - Fork 70
Open
Labels
Description
Describe the bug
This works:
app()->get('/', ['name' => 'home', function () {
render('index');
}]);And this doesn't work:
app()->group('/admin', ['name' => 'admin', function () {
app()->resource('/users', 'UsersController');
}]);Expected behavior
I want to get routes such like these:
admin.users.indexadmin.users.create- etc