We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Route::group('/a', function () { Route::resource('/x', app\admin\controller\AdminController::class); }); Route::group('/b', function () { Route::resource('/x', app\admin\controller\AdminController::class); });
该形式可以注册 /a/x/index 和 /b/x/index 的路由,但是它们的 name 都是 x.index
/a/x/index
/b/x/index
x.index
目前看路由的 name 注册和获取太过直接了当,貌似没有太好的解决办法
The text was updated successfully, but these errors were encountered:
提供一种思路
https://github.com/krissss/webman-basic/blob/master/support/facade/Route.php
Sorry, something went wrong.
No branches or pull requests
该形式可以注册
/a/x/index
和/b/x/index
的路由,但是它们的 name 都是x.index
目前看路由的 name 注册和获取太过直接了当,貌似没有太好的解决办法
The text was updated successfully, but these errors were encountered: