'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(\App\Models\Agency::class,'ms_agency_id'); } public function getScope(): string { return $this->agency->scope ?? ''; } }