feat: Implement Dynamics CRUD
This commit is contained in:
@@ -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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user