gpt4 book ai didi

php - Laravel 5.7 电子邮件验证路由

转载 作者:行者123 更新时间:2023-12-03 18:22:14 24 4
gpt4 key购买 nike

在 Laravel 5.7 上添加了电子邮件验证功能。但是在我的项目中,我不使用默认路由名称并为我自己的目的添加了一个前缀。现在,当我添加以下代码以添加验证路由时,它显示错误。
Auth::routes(['verify' => true]);
错误信息显示 verification.verify路由不存在。我在哪里可以在我的项目中更新此路线名称?或者使用此功能的唯一方法是遵循默认的身份验证路由名称?

项目源代码可在 https://github.com/nasirkhan/laravel-starter/tree/l57 获得

最佳答案

而不是使用 Auth::routes(['verify' => true]);只需使用 Auth::routes();并手动添加这些路由:

Route::get('email/verify', 'Auth\VerificationController@show')->name('verification.notice');
Route::get('email/verify/{id}', 'Auth\VerificationController@verify')->name('verification.verify');
Route::get('email/resend', 'Auth\VerificationController@resend')->name('verification.resend');

然后根据需要自定义:)

关于php - Laravel 5.7 电子邮件验证路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52576535/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com