Files
Paymenter-Version-Tracks/app/Models/ServiceConfig.php
Muhammad Tamir 85c03cef82 v1.3.4
2025-11-14 10:57:49 +07:00

42 lines
881 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use OwenIt\Auditing\Contracts\Auditable;
class ServiceConfig extends Model implements Auditable
{
use \App\Models\Traits\Auditable, HasFactory;
protected $fillable = [
'service_id',
'config_option_id',
'config_value_id',
];
/**
* Get the service that owns the service config.
*/
public function service()
{
return $this->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');
}
}