From 19860d657f52c024810da003747b48e4fc9487d3 Mon Sep 17 00:00:00 2001 From: Deon George Date: Fri, 9 Jul 2021 12:47:10 +1000 Subject: [PATCH] Fix account time format for DB storage --- app/Models/Account.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Models/Account.php b/app/Models/Account.php index 5a964e0..3fbf273 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -35,6 +35,9 @@ class Account extends Model implements IDs 'services_count_html', 'switch_url', ]; + + public $dateFormat = 'U'; + protected $visible = [ 'id', 'active_display',