getKey(); } /** * Return a key value array, containing any custom claims to be added to the JWT. * * @return array */ public function getJWTCustomClaims() { return []; } /** * @return HasMany */ public function passwordReset(): HasMany { return $this->hasMany(PasswordReset::class, 'user_id', 'id'); } public function employers(): hasMany { return $this->hasMany(CompanyModule::class); } }