Merge pull request #419 from jonnybarnes/Use_env_file_for_cookie_prefix

Use env file for cookie prefix
This commit is contained in:
Jonny Barnes 2022-09-10 13:47:39 +01:00 committed by GitHub
commit d2bb2c5dde
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -128,7 +128,7 @@ return [
'cookie' => env(
'SESSION_COOKIE',
(env('SECURE_SESSION_COOKIE') ? '__Host-' : '') . Str::slug(env('APP_NAME', 'laravel'), '_') . '_session'
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
),
/*