I'm using the standard laravel registration system (php artisan make:auth
) and i'm currently wondering how the verification of the mail in laravel works. I don't see any token or something else in the database that could be compared to the one from the "registration-complete" mail of laravel (after sign-up).
So how does Laravel acutally make sure that the token is correct?
I already looked in the RegistraterController and think it must have to do something with the User::create()
method that is called in the create
method of the Controller. But, unfortunateley, i even can not find this method...
(My Laravel is running on version 5.8.7)