When I add ['verify' => true] parameter to web auth routes like so
Auth::routes(['verify' => true]);
I cannot see routes when calling
$ php artisan route:list
instead of a table I'm getting:
ReflectionException : Class App\Http\Controllers\Auth\VerificationController does not exist
And it is truth, I don't have a file called VerificationController nowhere on my computer.
I'm currently on laravel/framework version 5.7.20
php artisan make:auth? If you upgraded from 5.6, you may want to start a new laravel app runmake:authand then copy the new Controller into your upgraded 5.7 instance.make:auth, the Upgrade Guide does not say that I need runningphp artisan make:auth