Fix class names

This commit is contained in:
slawkens
2023-09-16 11:45:40 +02:00
parent b3991a8e78
commit 855b05b15f
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace MyAAC\Models;
use Illuminate\Database\Eloquent\Model;
class PlayerItem extends Model {
protected $table = 'player_items';
public $timestamps = false;
public function player()
{
return $this->belongsTo(Player::class);
}
}