hasMany(AdminUserToken::class); } public function notifyVerifyCodeForForgotten($code) { $useQueue = system_setting('base.use_queue', true); if ($useQueue) { $this->notify(new AdminForgottenNotification($this, $code)); } else { $this->notifyNow(new AdminForgottenNotification($this, $code)); } } }