lasthourcloud/app/Models/ServerSetting.php

18 lines
285 B
PHP
Raw Normal View History

2023-03-30 15:52:19 +02:00
<?php
namespace App\Models;
2023-06-15 09:15:41 +02:00
use Illuminate\Database\Eloquent\Model;
class ServerSetting extends Model
2023-03-30 15:52:19 +02:00
{
protected $fillable = [
2023-06-15 13:28:16 +02:00
'server_id',
'is_docker_installed',
];
2023-03-30 15:52:19 +02:00
public function server()
{
return $this->belongsTo(Server::class);
}
}