ledgerrz/app/Models/Participant.php
Daan Meijer 0fee3c1972
Some checks failed
linter / quality (push) Failing after 1m9s
tests / ci (8.3) (push) Failing after 51s
tests / ci (8.4) (push) Failing after 1m7s
tests / ci (8.5) (push) Failing after 1m9s
different names in different dynamics
2026-06-17 09:38:54 +02:00

18 lines
266 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',
'display_name',
];
}