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

@@ -54,7 +54,7 @@ class BudgetLimit extends Model
'deleted' => Deleted::class,
];
protected $fillable = ['budget_id', 'start_date', 'end_date', 'amount', 'transaction_currency_id'];
protected $fillable = ['budget_id', 'start_date', 'end_date','start_date_tz','end_date_tz', 'amount', 'transaction_currency_id'];
/**
* Route binder. Converts the key in the URL to the specified object (or throw 404).