We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f4d42 commit d7683e8Copy full SHA for d7683e8
config/filesystems.php
@@ -55,9 +55,10 @@
55
'url' => env('AWS_URL'),
56
'endpoint' => env('AWS_ENDPOINT'),
57
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
58
- 'root' => env('AWS_BUCKET_ROOT'),
+ 'root' => (string) env('AWS_BUCKET_ROOT'),
59
'throw' => false,
60
],
61
+
62
's3-public' => [
63
'driver' => 's3',
64
'key' => env('AWS_ACCESS_KEY_ID'),
@@ -68,7 +69,7 @@
68
69
70
71
- 'root' => env('AWS_BUCKET_PUBLIC_ROOT'),
72
+ 'root' => (string) env('AWS_BUCKET_PUBLIC_ROOT'),
73
'visibility' => 'public',
74
75
0 commit comments