TwoFactorAuthenticationController
class TwoFactorAuthenticationController extends Controller
Properties
| protected array | $middleware | The middleware registered on the controller. |
from Controller |
Methods
middleware(Closure|array|string $middleware, array $options = [])
Register middleware on the controller.
from
Controller
mixed
callAction(string $method, array $parameters)
Execute an action on the controller.
from
Controller
mixed
__call(string $method, array $parameters)
Handle calls to missing methods on the controller.
from
Controller
store(Request $request, EnableTwoFactorAuthentication $enable)
Enable two factor authentication for the user.
destroy(Request $request, DisableTwoFactorAuthentication $disable)
Disable two factor authentication for the user.
Details
in
Controller at line 20
ControllerMiddlewareOptions
middleware(Closure|array|string $middleware, array $options = [])
Register middleware on the controller.
in
Controller at line 35
array
getMiddleware()
Get the middleware assigned to the controller.
in
Controller at line 43
mixed
callAction(string $method, array $parameters)
Execute an action on the controller.
in
Controller at line 53
mixed
__call(string $method, array $parameters)
Handle calls to missing methods on the controller.
at line 19
__construct(Container $container)
No description
at line 27
TwoFactorEnabledResponse
store(Request $request, EnableTwoFactorAuthentication $enable)
Enable two factor authentication for the user.
at line 40
TwoFactorDisabledResponse
destroy(Request $request, DisableTwoFactorAuthentication $disable)
Disable two factor authentication for the user.