From 0edb751e26289f73d793d1d36dd60e066aa394e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Wed, 6 Nov 2019 18:02:12 +0100 Subject: [PATCH] Update config key --- src/Features/Timestamps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/Timestamps.php b/src/Features/Timestamps.php index 6a2fdac6..309631ed 100644 --- a/src/Features/Timestamps.php +++ b/src/Features/Timestamps.php @@ -40,7 +40,7 @@ class Timestamps implements Feature { // Add this key to your tenancy.php config if you need to change the format. return Date::now()->format( - $this->config->get('tenancy.features.timestamps.format') ?? 'c' // ISO 8601 + $this->config->get('tenancy.timestamp_format') ?? 'c' // ISO 8601 ); } }