我一直在寻找解决方案,但没有成功。
我正在尝试按照以下步骤为我的注册设置激活邮件功能:https://laracasts.com/discuss/channels/laravel/laravel-53-email-verification-with-activation-code
- 在添加/编辑我的项目后,我在尝试访问 localhost / login http://prntscr.com/dnveaf后出现此错误
这是我的网络路线文件:
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('user/activation/{token}', 'Auth\LoginController@activateUser')->name('user.activate');
Route::get('/home', 'HomeController@index');
其他代码与第一个链接中提供的代码相同。 我不知道它为什么试图访问 Class App \ Http \ Controllers \ Auth \ ActivationService
有谁知道我该怎么办?