2026-06-20 13:08:45 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models\V5;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
|
|
|
|
|
|
class ApplicationDomain extends V5Model
|
|
|
|
|
{
|
|
|
|
|
protected $table = 'v5_application_domains';
|
|
|
|
|
|
2026-07-06 15:40:37 +00:00
|
|
|
protected bool $hasUuidColumn = false;
|
|
|
|
|
|
2026-06-20 13:08:45 +00:00
|
|
|
protected $fillable = [
|
|
|
|
|
'application_id',
|
|
|
|
|
'domain',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public function application(): BelongsTo
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(Application::class);
|
|
|
|
|
}
|
|
|
|
|
}
|