From 1bed031c1f7cfcfeadf497934d301987c53b1e6e Mon Sep 17 00:00:00 2001 From: Jordan Hall Date: Wed, 10 Apr 2019 12:01:28 +0100 Subject: [PATCH] Remove underscore as cache prefixes automatically have a colon appended to them --- config/cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cache.php b/config/cache.php index 414ca996..30f0cae2 100644 --- a/config/cache.php +++ b/config/cache.php @@ -97,6 +97,6 @@ | */ - 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'), ];