Example #1
0
 static function findFromEmail($email)
 {
     $user = User::where('email', '=', $email)->first();
     return $user;
 }