Big changes added events for decisions

This commit is contained in:
Simon Pocrnjič
2025-10-22 23:20:04 +02:00
parent 872b76b012
commit 67ebe4b225
36 changed files with 2240 additions and 189 deletions
+3 -1
View File
@@ -29,7 +29,9 @@ public function actions(): BelongsToMany
public function events(): BelongsToMany
{
return $this->belongsToMany(\App\Models\Event::class);
return $this->belongsToMany(\App\Models\Event::class)
->withPivot(['run_order', 'active', 'config'])
->withTimestamps();
}
public function activities(): HasMany