ledgerrz/app/Models/Participant.php
2026-06-15 00:30:57 +02:00

17 lines
242 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\Pivot;
class Participant extends Pivot
{
public $timestamps = false;
protected $fillable = [
'user_id',
'dynamic_id',
'role',
];
}