coolify/app/Models/ServerSetting.php

15 lines
216 B
PHP
Raw Normal View History

2023-03-30 15:52:19 +02:00
<?php
namespace App\Models;
class ServerSetting extends BaseModel
{
protected $fillable = [
'server_id'
];
2023-03-30 15:52:19 +02:00
public function server()
{
return $this->belongsTo(Server::class);
}
}