after Update laravel 6.2 [App\Http\Controllers\Auth\ConfirmPasswordController] does not exist

后端 未结 5 425
陌清茗
陌清茗 2021-01-19 13:50

I update laravel from v 6.0 to v6.2 and after the finish, I try php artisan route:list

This error

5条回答
  •  一整个雨季
    2021-01-19 14:22

    1 ) Open file vender/laravel/framework/src/Illuminate/Routing/Router.php".

    2 ) and comment these

        // $this->get('password/confirm', 'Auth\ConfirmPasswordController@showConfirmForm')->name('password.confirm');
        // $this->post('password/confirm', 'Auth\ConfirmPasswordController@confirm');
    

提交回复
热议问题