$email = $request->get('email'); $password = $request->get('password'); $password = md5($password);
if (Member::attempt(['email' => $email,'password'=> $password])) { return "Success"; }else{ return "Fails"; }
Call to undefined method Modules\Oauth\Repositories\Eloquent\EloquentMemberRepository::attempt()
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community