first commit

This commit is contained in:
gabriellina640
2026-04-13 21:39:44 -05:00
commit f551520161
95 changed files with 14931 additions and 0 deletions

11
app/Models/Game.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Game extends Model
{
use HasFactory;
}