Complete fix for #17

This commit is contained in:
Bubka 2020-12-01 18:34:20 +01:00
parent e7156d0650
commit b80f7b6b3b

View File

@ -49,4 +49,13 @@ public function sendPasswordResetNotification($token)
{
$this->notify(new ResetPassword($token));
}
/**
* Get Email attribute
* @param string $value
*/
public function getEmailAttribute($value)
{
return strtolower($value);
}
}