Xboard/app/Models/StatServer.php

22 lines
421 B
PHP
Raw Normal View History

2023-11-17 01:44:01 -05:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class StatServer extends Model
{
protected $table = 'v2_stat_server';
protected $dateFormat = 'U';
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp'
];
2025-01-06 12:20:11 -05:00
public function server()
{
return $this->belongsTo(Server::class, 'server_id');
}
2023-11-17 01:44:01 -05:00
}