我使用谷歌身份验证器添加 laravel-admin
在发布到新页面/auth/auth
时,总是被重定向到/auth/login
,因为
“/auth/auth”不在 admin.auth.excepts 中
我如何在不编辑的情况下解决这个问题
/vendor/composer/encore/laravel-admin/src/Middleware/Authenticate.php
我试图通过复制来覆盖 Authenticate.phpAuthenticate.php
但app/http/Middleware
不起作用
从
protected function shouldPassThrough($request)
{
$excepts = config('admin.auth.excepts', [
'auth/login',
'auth/logout',
]);
至
protected function shouldPassThrough($request)
{
$excepts = config('admin.auth.excepts', [
'auth/login',
'auth/logout',
'auth/auth'
]);
我想发布/auth/login
到/auth/auth
(使用谷歌身份验证器)然后登录到 laravel-admin