Hey guys!
There is a way, to allow the login only via magic link? I mean, when the user hit login button on the admin panel, he will get a magic link in email, which only allows to login to the admin panel.
Of course, just build the controller to handle the login, get the user from the token in the url and validate it hasn't expired. Login the user and expire the link
you can use similar to:
Route::get('magic-moments/{token}', function ($token) {