From 411ff5978cc86eae21ab903a2ee97b9e41f7c951 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Nov 2017 08:19:10 -0600 Subject: [PATCH] Update filesystems.php --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index c569e013..525f9a9e 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -57,11 +57,11 @@ return [ 's3' => [ 'driver' => 's3', - 'url' => env('AWS_URL'), 'key' => env('AWS_KEY'), 'secret' => env('AWS_SECRET'), 'region' => env('AWS_REGION'), 'bucket' => env('AWS_BUCKET'), + 'url' => env('AWS_URL'), ], ],