Fixes for casts

This commit is contained in:
Benjamin Beganović 2021-11-05 15:49:50 +01:00
parent e1f1700226
commit 6b0a353165

View File

@ -68,6 +68,9 @@ class Account extends BaseModel
];
protected $casts = [
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'deleted_at' => 'timestamp',
'onboarding' => 'object'
];