mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-02 17:06:24 +01:00
17 lines
254 B
PHP
17 lines
254 B
PHP
<?php
|
|
|
|
namespace MyAAC\Models;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PlayerKillers extends Model {
|
|
|
|
protected $table = 'player_killers';
|
|
|
|
public $timestamps = false;
|
|
|
|
public function player()
|
|
{
|
|
return $this->belongsTo(Player::class);
|
|
}
|
|
}
|