mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-28 10:19:21 +02:00
18 lines
250 B
PHP
18 lines
250 B
PHP
<?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);
|
|
}
|
|
|
|
}
|