my-idlers/app/Models/NetworkSpeed.php
2023-08-19 23:46:18 +10:00

25 lines
615 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 $keyType = 'string';
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(): \Illuminate\Database\Eloquent\Relations\BelongsTo
{
return $this->belongsTo(Yabs::class, 'id', 'id');
}
}