mirror of
https://github.com/slawkens/myaac.git
synced 2026-01-08 15:51:29 +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);
|
|
}
|
|
}
|