Laravel 5.5更改身份验证重置电子邮件模板

时间:2018-05-08 12:16:32

标签: laravel laravel-5

我在重设密码时收到了电子邮件“http://localhost/administrator/password/reset?e41c382e270ec2aad6a14a6bcc934a68a2ee2e16382a54df1e33d71d5b01d12b”。但是,在我的路线中,我有以下代码;

Route::get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.email');
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');

如何重写路径以便查询参数?或者,如何更改重置密码的电子邮件,以便它可以显示如下:

http://localhost/administrator/password/reset/e41c382e270ec2aad6a14a6bcc934a68a2ee2e16382a54df1e33d71d5b01d12b,而不是查询参数(?)。

0 个答案:

没有答案