Remove underscore as cache prefixes automatically have a colon appended to them

This commit is contained in:
Jordan Hall
2019-04-10 12:01:28 +01:00
committed by GitHub
parent 005ec1301e
commit 1bed031c1f

View File

@@ -97,6 +97,6 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
];