Fix type casting for environment variables in config files (#6670)

This commit is contained in:
Ahmed Alaa
2025-09-07 17:58:17 -05:00
committed by GitHub
parent 39072d072c
commit a696e5fd51
+1 -1
View File
@@ -129,7 +129,7 @@ return [
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel')).'-session'
Str::slug((string) env('APP_NAME', 'laravel')).'-session'
),
/*