Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 laravel voyager 用于两个不同的 url 管理员吗?
示例代码
Route::prefix('admin-1')->group(function() { Voyager::routes(); }); Route::prefix('admin-2')->group(function() { Voyager::routes(); });
我已经尝试过了,但是当登录并在仪表板中执行菜单时,admin-2 总是让我重定向到 admin-1。
您可以考虑在角色面包中为用户定义不同的访问角色,而不是使用不同的 url。
如果这不符合您的需求,那么最好制作自己的管理面板。