47 lines
876 B
PHP
47 lines
876 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
|
class Game extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'type',
|
|
'status',
|
|
'player1_user_id',
|
|
'player2_user_id',
|
|
'winner_user_id',
|
|
'loser_user_id',
|
|
'began_at',
|
|
'ended_at',
|
|
'total_time',
|
|
'player1_points',
|
|
'player2_points',
|
|
'custom',
|
|
'is_draw',
|
|
'match_id'
|
|
];
|
|
|
|
public function winner()
|
|
{
|
|
return $this->belongsTo(User::class, "winner_user_id");
|
|
}
|
|
|
|
public function player1()
|
|
{
|
|
return $this->belongsTo(User::class, 'player1_user_id');
|
|
}
|
|
|
|
public function player2()
|
|
{
|
|
return $this->belongsTo(User::class, 'player2_user_id');
|
|
}
|
|
}
|