Laravel 5.1重置密码电子邮件无法正常生产

时间:2018-08-08 10:45:53

标签: php laravel email passwords

您好,标题说我正在使用laravel config / auth.php在我的Web应用程序中为忘记密码发送重置电子邮件,这是代码

<?php return [

/*
|--------------------------------------------------------------------------
| Default Authentication Driver
|--------------------------------------------------------------------------
|
| This option controls the authentication driver that will be utilized.
| This driver manages the retrieval and authentication of the users
| attempting to get access to protected areas of your application.
|
| Supported: "database", "eloquent"
|
*/

'driver' => 'eloquent',

/*
|--------------------------------------------------------------------------
| Authentication Model
|--------------------------------------------------------------------------
|
| When using the "Eloquent" authentication driver, we need to know which
| Eloquent model should be used to retrieve your users. Of course, it
| is often just the "User" model but you may use whatever you like.
|
*/

'model' => App\User::class,

/*
|--------------------------------------------------------------------------
| Authentication Table
|--------------------------------------------------------------------------
|
| When using the "Database" authentication driver, we need to know which
| table should be used to retrieve your users. We have chosen a basic
| default value but you may easily change it to any table you like.
|
*/

'table' => 'users',

/*
|--------------------------------------------------------------------------
| Password Reset Settings
|--------------------------------------------------------------------------
|
| Here you may set the options for resetting passwords including the view
| that is your password reset e-mail. You can also set the name of the
| table that maintains all of the reset tokens for your application.
|
| The expire time is the number of minutes that the reset token should be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/

'password' => [
    'email'  => app()->make('config')->get('impostazioni.email_reset_password'),
    'table'  => 'password_resets',
    'expire' => 60,
],

];

我正在使用这一行代码

app()->make('config')->get('impostazioni.email_reset_password'),

要检索电子邮件视图,我对同一件事有2个电子邮件视图,因为我的网站有2种语言 在测试环境下效果很好,但由于生产中的这个错误而失败

production.ERROR: InvalidArgumentException: Invalid view.

预先感谢我已经尝试清理缓存和清除路由的帮助,我还检查了是否区分大小写的错误,如果您不能建议我采用其他方法来使此工作成功发布,请尝试

0 个答案:

没有答案