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

@@ -44,7 +44,7 @@ class InvitedUser extends Model
'expires' => 'datetime',
'redeemed' => 'boolean',
];
protected $fillable = ['user_id', 'email', 'invite_code', 'expires', 'redeemed'];
protected $fillable = ['user_id', 'email', 'invite_code', 'expires','expires_tz', 'redeemed'];
/**
* Route binder. Converts the key in the URL to the specified object (or throw 404).