mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-29 15:15:35 +01:00
21 lines
298 B
PHP
21 lines
298 B
PHP
<?php
|
|
|
|
namespace MyAAC\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PlayerOnline extends Model {
|
|
|
|
protected $table = 'players_online';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'player_id',
|
|
];
|
|
|
|
public function player()
|
|
{
|
|
return $this->belongsTo(Player::class);
|
|
}
|
|
}
|