From 15c1fbedf7fddf5e95de20962fb8b65e1bb3419f Mon Sep 17 00:00:00 2001 From: M_A_X_NSK Date: Thu, 28 Mar 2024 07:49:04 +0100 Subject: [PATCH] Added backward compatibility with the old env key --- config/data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/data.php b/config/data.php index 3f6dd9d8..62a8f548 100644 --- a/config/data.php +++ b/config/data.php @@ -96,7 +96,7 @@ 'enabled' => true, 'directories' => [app_path('Data')], 'cache' => [ - 'store' => env('CACHE_STORE', 'file'), + 'store' => env('CACHE_STORE', env('CACHE_DRIVER', 'file')), 'prefix' => 'laravel-data', 'duration' => null, ],