Support the ongoing development of Laravel.io →
Configuration Authentication Laravel
Last updated 1 year ago.
0

I found solution:

In App\Http\Middleware\RedirectIfAuthenticated

change

if (Auth::guard($guard)->check()) {
    return redirect('/home');
}

to

if (Auth::guard($guard)->check()) {
    return redirect('/');
}
Last updated 6 years ago.
0

In your auth.php configuration file, you may configure multiple password "brokers", which may be used to reset passwords on multiple user tables. You can customize the included ForgotPasswordController and ResetPasswordController to use the broker of your choice by overriding the broker method:

use Illuminate\Support\Facades\Password;

protected function broker() { return Password::broker('name'); }

By:Xtreem Solution

Highly Skilled Laravel Developer

Dedicated PHP Developer

Last updated 6 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.