mirror of
https://github.com/jlengrand/coolify.git
synced 2026-03-10 15:48:55 +00:00
16 lines
228 B
PHP
16 lines
228 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ServerSetting extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
public function server()
|
|
{
|
|
return $this->belongsTo(Server::class);
|
|
}
|
|
}
|