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