mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-27 22:27:06 +00:00
21 lines
372 B
PHP
21 lines
372 B
PHP
<?php
|
|
|
|
namespace App\Models\V5;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class ApplicationDomain extends V5Model
|
|
{
|
|
protected $table = 'v5_application_domains';
|
|
|
|
protected $fillable = [
|
|
'application_id',
|
|
'domain',
|
|
];
|
|
|
|
public function application(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Application::class);
|
|
}
|
|
}
|