'datetime', ]; /** * @return mixed */ public function isSuperUser() { return $this->is_supperuser; } /** * @return mixed */ public function isBanned() { return $this->is_banned; } /** * Send the password reset notification. * * @param string $token * @return void */ public function sendPasswordResetNotification($token) { $this->notify(new ResetPasswordNotification($token)); } /** * Send the email verification notification. * * @return void */ public function sendEmailVerificationNotification() { $this->notify(new VerifyEmailNotification); } }