You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2020. It is now read-only.
Hi,
How can I make the home to display the dashboard component as soon as I login without clicking the dashboard button first. Like mounting the dashboard component on the home.blade.php
The text was updated successfully, but these errors were encountered:
Hi,
In Laravel 6, open loginController.php and comment and add method as follows
// protected $redirectTo = '/dashboard';
public function redirectTo(){
return '/dashboard';
}
Now After successful login Dashboard will be open. This is returning route what you have defined in rotues/web.php.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
How can I make the home to display the dashboard component as soon as I login without clicking the dashboard button first. Like mounting the dashboard component on the home.blade.php
The text was updated successfully, but these errors were encountered: