Make sure user_group_id is rendered as int where relevant.

This commit is contained in:
James Cole
2025-02-15 05:38:40 +01:00
parent 7504b21c3e
commit b6e8b66035
17 changed files with 45 additions and 9 deletions

View File

@@ -49,6 +49,8 @@ class AvailableBudget extends Model
'transaction_currency_id' => 'int',
'amount' => 'string',
'native_amount' => 'string',
'user_id' => 'integer',
'user_group_id' => 'integer',
];
protected $fillable = ['user_id', 'user_group_id', 'transaction_currency_id', 'amount', 'start_date', 'end_date', 'start_date_tz', 'end_date_tz', 'native_amount'];