Add column to fillable array

This commit is contained in:
James Cole
2024-11-06 11:59:37 +01:00
parent 7af9dce33b
commit c398383905
6 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ class PiggyBankRepetition extends Model
'targetdate' => 'date',
];
protected $fillable = ['piggy_bank_id', 'startdate', 'targetdate', 'currentamount'];
protected $fillable = ['piggy_bank_id', 'startdate','startdate_tz', 'targetdate','targetdate_tz', 'currentamount'];
public function piggyBank(): BelongsTo
{