PXG_2026_API/app/Models/Player.php

13 lines
205 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Player extends Model
{
protected $fillable = [
'name','phone','email','club','shirt_size','gender','notes'
];
}