'datetime', ]; /** * Send the password reset notification. * * @param string $token * @return void */ public function sendPasswordResetNotification($token) { $this->notify(new ResetPassword($token)); Log::info('Password reset token sent'); } /** * set Email attribute * @param string $value */ public function setEmailAttribute($value) { $this->attributes['email'] = strtolower($value); } }