feat: Implement Dynamics CRUD

This commit is contained in:
Daan Meijer
2026-06-15 00:30:57 +02:00
commit 647a708160
346 changed files with 34146 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\Pivot;
class Participant extends Pivot
{
public $timestamps = false;
protected $fillable = [
'user_id',
'dynamic_id',
'role',
];
}