Merge pull request #6934 from beganovich/account-model-casts
Fixes for Account model casts
This commit is contained in:
commit
c0f6352230
1 changed files with 3 additions and 0 deletions
|
|
@ -68,6 +68,9 @@ class Account extends BaseModel
|
|||
];
|
||||
|
||||
protected $casts = [
|
||||
'updated_at' => 'timestamp',
|
||||
'created_at' => 'timestamp',
|
||||
'deleted_at' => 'timestamp',
|
||||
'onboarding' => 'object'
|
||||
];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue