Create event table

This commit is contained in:
Quentin T'JAMPENS
2025-10-27 22:46:35 +01:00
parent 9cf93d93c7
commit adfe2a9fe1
2 changed files with 42 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Events extends Model
{
protected $fillable = [
"name",
"description",
];
}