Add missing $fillable into PlayerOnline model

This commit is contained in:
slawkens
2025-07-31 12:32:18 +02:00
parent cf7fd20452
commit 43415cf35d

View File

@@ -9,6 +9,10 @@ class PlayerOnline extends Model {
public $timestamps = false;
protected $fillable = [
'player_id',
];
public function player()
{
return $this->belongsTo(Player::class);