From 6b0a3531651ade4b08ba1031dc70bc90d2a5d855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Beganovi=C4=87?= Date: Fri, 5 Nov 2021 15:49:50 +0100 Subject: [PATCH] Fixes for casts --- app/Models/Account.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Account.php b/app/Models/Account.php index 9a95aec3b344..6dc153266f55 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -68,6 +68,9 @@ class Account extends BaseModel ]; protected $casts = [ + 'updated_at' => 'timestamp', + 'created_at' => 'timestamp', + 'deleted_at' => 'timestamp', 'onboarding' => 'object' ];