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
|
|
|
{
|
2023-10-25 11:50:22 +02:00
|
|
|
protected $guarded = [];
|
2023-08-08 11:51:36 +02:00
|
|
|
|
2023-03-30 15:52:19 +02:00
|
|
|
public function server()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Server::class);
|
|
|
|
}
|
|
|
|
}
|