7
7
| Authentication Defaults
8
8
|--------------------------------------------------------------------------
9
9
|
10
- | This option controls the default authentication "guard" and password
11
- | reset options for your application. You may change these defaults
10
+ | This option defines the default authentication "guard" and password
11
+ | reset "broker" for your application. You may change these values
12
12
| as required, but they're a perfect start for most applications.
13
13
|
14
14
*/
15
15
16
16
'defaults ' => [
17
- 'guard ' => ' web ' ,
18
- 'passwords ' => ' users ' ,
17
+ 'guard ' => env ( ' AUTH_GUARD ' , ' web ') ,
18
+ 'passwords ' => env ( ' AUTH_PASSWORD_BROKER ' , ' users ') ,
19
19
],
20
20
21
21
/*
25
25
|
26
26
| Next, you may define every authentication guard for your application.
27
27
| Of course, a great default configuration has been defined for you
28
- | here which uses session storage and the Eloquent user provider.
28
+ | which utilizes session storage plus the Eloquent user provider.
29
29
|
30
- | All authentication drivers have a user provider. This defines how the
30
+ | All authentication guards have a user provider, which defines how the
31
31
| users are actually retrieved out of your database or other storage
32
- | mechanisms used by this application to persist your user's data .
32
+ | system used by the application. Typically, Eloquent is utilized .
33
33
|
34
34
| Supported: "session"
35
35
|
47
47
| User Providers
48
48
|--------------------------------------------------------------------------
49
49
|
50
- | All authentication drivers have a user provider. This defines how the
50
+ | All authentication guards have a user provider, which defines how the
51
51
| users are actually retrieved out of your database or other storage
52
- | mechanisms used by this application to persist your user's data .
52
+ | system used by the application. Typically, Eloquent is utilized .
53
53
|
54
54
| If you have multiple user tables or models you may configure multiple
55
- | sources which represent each model / table. These sources may then
55
+ | providers to represent the model / table. These providers may then
56
56
| be assigned to any extra authentication guards you have defined.
57
57
|
58
58
| Supported: "database", "eloquent"
62
62
'providers ' => [
63
63
'users ' => [
64
64
'driver ' => 'eloquent ' ,
65
- 'model ' => App \Models \User::class,
65
+ 'model ' => env ( ' AUTH_MODEL ' , App \Models \User::class) ,
66
66
],
67
67
68
68
// 'users' => [
76
76
| Resetting Passwords
77
77
|--------------------------------------------------------------------------
78
78
|
79
- | You may specify multiple password reset configurations if you have more
80
- | than one user table or model in the application and you want to have
81
- | separate password reset settings based on the specific user types .
79
+ | These configuration options specify the behavior of Laravel's password
80
+ | reset functionality, including the table utilized for token storage
81
+ | and the user provider that is invoked to actually retrieve users .
82
82
|
83
- | The expire time is the number of minutes that each reset token will be
83
+ | The expiry time is the number of minutes that each reset token will be
84
84
| considered valid. This security feature keeps tokens short-lived so
85
85
| they have less time to be guessed. You may change this as needed.
86
86
|
87
+ | The throttle setting is the number of seconds a user must wait before
88
+ | generating more password reset tokens. This prevents the user from
89
+ | quickly generating a very large amount of password reset tokens.
90
+ |
87
91
*/
88
92
89
93
'passwords ' => [
90
94
'users ' => [
91
95
'provider ' => 'users ' ,
92
- 'table ' => ' password_resets ' ,
96
+ 'table ' => env ( ' AUTH_PASSWORD_RESET_TOKEN_TABLE ' , ' password_reset_tokens ' ) ,
93
97
'expire ' => 60 ,
94
98
'throttle ' => 60 ,
95
99
],
101
105
|--------------------------------------------------------------------------
102
106
|
103
107
| Here you may define the amount of seconds before a password confirmation
104
- | times out and the user is prompted to re-enter their password via the
108
+ | window expires and users are asked to re-enter their password via the
105
109
| confirmation screen. By default, the timeout lasts for three hours.
106
110
|
107
111
*/
108
112
109
- 'password_timeout ' => 10800 ,
113
+ 'password_timeout ' => env ( ' AUTH_PASSWORD_TIMEOUT ' , 10800 ) ,
110
114
111
- ];
115
+ ];
0 commit comments