Added routes, endpoints to get all matches, get a specific match, create a match, join a match, and update the match

This commit is contained in:
2025-12-18 20:29:10 +00:00
parent 5270e3c093
commit b485e19c9d
5 changed files with 235 additions and 8 deletions
+58
View File
@@ -0,0 +1,58 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class MatchGame extends Model
{
use HasFactory;
protected $table = 'matches';
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_marks',
'player2_marks',
'player1_points',
'player2_points',
'stake',
'custom'
];
protected $casts = [
'began_at' => 'datetime',
'ended_at' => 'datetime',
'player1_marks' => 'integer',
'player2_marks' => 'integer',
'player1_points' => 'integer',
'player2_points' => 'integer',
'stake' => 'integer',
];
public function player1()
{
return $this->belongsTo(User::class, 'player1_user_id');
}
public function player2()
{
return $this->belongsTo(User::class, 'player2_user_id');
}
public function winner()
{
return $this->belongsTo(User::class, 'winner_user_id');
}
}