belongsTo(Service::class); } /** * Get the config option that owns the service config. */ public function configOption() { return $this->belongsTo(ConfigOption::class); } /** * Get the config value that owns the service config. */ public function configValue() { return $this->belongsTo(ConfigOption::class, 'config_value_id'); } }