0

我是 Laravel 的新手并使用版本 8。我已经安装了 Fortify 并使用 Laravel UI 作为前端登录。我启用了 Fortify 2FA,但它只在登录时请求,如何将 Fortify 2FA 转换为中间件以在其他 Web 路由中使用它?任何帮助将不胜感激,谢谢!

在 web.php 中使用 Foritfy 2FA 保护网络路由的示例
Route::get('/example', [ExampleController, 'index'])->middleware('Fortify 2FA')->name('example.index');

4

1 回答 1

-1

试试这个:

 Route::group(['middleware' => ['Fortify 2FA']], function () {
            Route::get('/example', [ExampleController, 'index'])>name('example.index');
 });
于 2021-12-31T09:06:22.987 回答