5a4d0bf13f
Updated DiskSpeed &NetworkSpeed for YABs relationship
23 lines
528 B
PHP
23 lines
528 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class NetworkSpeed extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $incrementing = false;
|
|
|
|
protected $table = 'network_speed';
|
|
|
|
protected $fillable = ['id', 'server_id', 'location', 'send', 'send_type', 'send_as_mbps', 'receive', 'receive_type', 'receive_as_mbps', 'created_at', 'updated_at'];
|
|
|
|
public function yabs()
|
|
{
|
|
return $this->belongsTo(Yabs::class, 'id', 'id');
|
|
}
|
|
}
|