Update cache prefix.

Make cache prefix like session cookie.
This commit is contained in:
ThunderbirdsX3 2017-09-06 16:38:40 +07:00 committed by GitHub
parent d5d81a53ed
commit b8120bfb55
1 changed files with 4 additions and 1 deletions

View File

@ -86,6 +86,9 @@
|
*/
'prefix' => 'laravel',
'prefix' => env(
'CACHE_PREFIX',
str_slug(env('APP_NAME', 'laravel'), '_').'_cache'
),
];