Answer the question
In order to leave comments, you need to log in
How to correctly implement a password recovery method using a unique key?
Good afternoon, everyone
can have an up-to-date info on how to make a password recovery method by email on laravel where does the unique key for resetting the password come from?
Answer the question
In order to leave comments, you need to log in
Lately, we've been doing it with signed urls.
https://laravel.com/docs/8.x/urls#signed-urls
use Illuminate\Support\Facades\URL;
return URL::temporarySignedRoute(
'unsubscribe', now()->addMinutes(30), ['user' => 1]
);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question