polishing, some breadcrumbs, predefined mutations implemented more

This commit is contained in:
Daan Meijer
2026-06-22 15:57:04 +02:00
parent 4ce510402c
commit c60033b365
15 changed files with 489 additions and 466 deletions
+3 -4
View File
@@ -12,16 +12,15 @@ class PredefinedMutation extends Model
use HasFactory;
protected $fillable = [
'dynamic_id',
'ledger_id',
'name',
'description',
'amount',
'type',
];
public function dynamic(): BelongsTo
public function ledger(): BelongsTo
{
return $this->belongsTo(Dynamic::class);
return $this->belongsTo(Ledger::class);
}
protected static function booted(): void