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 中的 auth.basic 过滤器限制对管理仪表板的访问。
但是该站点本身也有一个帐户系统,我想为此使用“普通”身份验证过滤器。
是否可以在同一个网站上单独使用这两个过滤器?
使用组并在其中定义其他路由。
Route::group(['prefix'=>'admin', 'before'=>'auth.basic'], function(){ Route::get('/', function(){}); }); Route::group(['prefix'=>'account', 'before'=>'auth.account'], function(){ Route::get('/', function(){}); });