'datetime', 'password' => 'hashed', ]; } public function sendPasswordResetNotification($token) { $this->notify(new ResetPassword($token)); } public function userGroup() { return $this->belongsTo(UserGroup::class); } public function agency() { return $this->belongsTo(Agency::class); } public function getScope(): string { return $this->agency->scope ?? ''; } }