관리-도구
편집 파일: LoginSecurityMiddleware.php
<?php namespace App\Http\Middleware; use App\Support\Google2FAAuthenticator; use Closure; class LoginSecurityMiddleware { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $authenticator = app(Google2FAAuthenticator::class)->boot($request); if ($authenticator->isAuthenticated()) { return $next($request); } return $authenticator->makeRequestOneTimePasswordResponse(); } }