further development of the predefinedmutations
linter / quality (push) Failing after 1m16s
tests / ci (8.3) (push) Failing after 59s
tests / ci (8.4) (push) Failing after 1m14s
tests / ci (8.5) (push) Failing after 1m15s

This commit is contained in:
Daan Meijer
2026-06-17 13:30:55 +02:00
parent ed23bb2a78
commit 11df4ef55c
9 changed files with 145 additions and 49 deletions
+3 -4
View File
@@ -11,15 +11,14 @@ 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);
}
}