Agrego archivos iniciales

This commit is contained in:
Laucha1312
2026-06-04 14:47:50 -03:00
commit ed94601e34
76 changed files with 7737 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Categoria extends Model
{
protected $table = 'categorias';
protected $primaryKey = 'id_categoria';
protected $fillable = [
'nombre',
'edad_min',
'edad_max',
'genero',
'es_libre'
];
}