How to Do Remember me Function at Login Option in Laravel?
In this post we will give you information about How to Do Remember me Function at Login Option in Laravel?. Hear we will give you detail about How to Do Remember me Function at Login Option in Laravel?And how to use it also give you demo for it if it is necessary.
we always use remember me option in login page, that way user don’t require to login everytime. So, we would like use remember me option in our login page then you can also do it simply, because laravel provide it’s own functionality. But, many developer can’t do it properly i mean remember me not working, but you can implement it right.
First you have to sure that
remember_token field in our users table. if you haven’t remember_token column then first add it in your users table or any table that you use as for auth.
Now you should have controller method this way:
Example:
public function webLoginPost(Request $request)
{
$this->validate($request, [
'email' => 'required|email',
'password' => 'required',
]);
$remember_me = $request->has('remember_me') ? true : false;
if (auth()->attempt(['email' => $request->input('email'), 'password' => $request->input('password')], $remember_me))
{
$user = auth()->user();
dd($user);
}else{
return back()->with('error','your username and password are wrong.');
}
}
try this…
Hope this code and post will helped you for implement How to Do Remember me Function at Login Option in Laravel?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs