File "fortify.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/fortify/config/fortify.php
File size: 1.63 KB
MIME-type: text/x-php
Charset: utf-8
<?php
use Laravel\Fortify\Features;
return [
'guard' => 'web',
'middleware' => ['web'],
'auth_middleware' => 'auth',
'passwords' => 'users',
'username' => 'email',
'email' => 'email',
'views' => true,
'home' => '/home',
'prefix' => '',
'domain' => null,
'lowercase_usernames' => false,
'limiters' => [
'login' => null,
],
'paths' => [
'login' => null,
'logout' => null,
'password.request' => null,
'password.reset' => null,
'password.email' => null,
'password.update' => null,
'register' => null,
'verification.notice' => null,
'verification.verify' => null,
'verification.send' => null,
'user-profile-information.update' => null,
'user-password.update' => null,
'password.confirm' => null,
'password.confirmation' => null,
'two-factor.login' => null,
'two-factor.enable' => null,
'two-factor.confirm' => null,
'two-factor.disable' => null,
'two-factor.qr-code' => null,
'two-factor.secret-key' => null,
'two-factor.recovery-codes' => null,
],
'redirects' => [
'login' => null,
'logout' => null,
'password-confirmation' => null,
'register' => null,
'email-verification' => null,
'password-reset' => null,
],
'features' => [
Features::registration(),
Features::resetPasswords(),
Features::emailVerification(),
Features::updateProfileInformation(),
Features::updatePasswords(),
Features::twoFactorAuthentication(),
],
];