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

后端 未结 5 431
陌清茗
陌清茗 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:34

    Step1. Create ConfirmPasswordController.php file in app/Http/Controllers/Auth/ path.

    Step2. ConfirmPasswordController.php paste this content to ConfirmPasswordController.php file.

    From v6.0.0 to v6.2.0 the following addition and modifications were made.

    Added app/Http/Controllers/Auth/ConfirmPasswordController.php

    Modified app/Http/Controllers/Auth/ForgotPasswordController.php

    Modified app/Http/Controllers/Auth/ResetPasswordController.php

    Modified app/Http/Kernel.php

    Modified config/auth.php

    Modified resources/lang/en/validation.php

    You can see the diff of v6.0.0 to v6.2.0 here.

提交回复
热议问题