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-04-26 15:38:50 +02:00
|
|
|
protected $fillable = [
|
2023-06-15 13:28:16 +02:00
|
|
|
'server_id',
|
2023-06-15 13:51:31 +02:00
|
|
|
'is_usable',
|
2023-04-26 15:38:50 +02:00
|
|
|
];
|
2023-08-08 11:51:36 +02:00
|
|
|
|
2023-03-30 15:52:19 +02:00
|
|
|
public function server()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Server::class);
|
|
|
|
}
|
|
|
|
}
|