mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
22 lines
421 B
PHP
22 lines
421 B
PHP
<?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'
|
|
];
|
|
|
|
public function server()
|
|
{
|
|
return $this->belongsTo(Server::class, 'server_id');
|
|
}
|
|
}
|