Merge pull request #4236 from caiquecastro/master

Allow filesystem to be changed on config
This commit is contained in:
Taylor Otwell
2017-04-24 07:50:02 -05:00
committed by GitHub

View File

@@ -13,7 +13,7 @@ return [
|
*/
'default' => 'local',
'default' => env('FILESYSTEM_DRIVER', 'local'),
/*
|--------------------------------------------------------------------------
@@ -26,7 +26,7 @@ return [
|
*/
'cloud' => 's3',
'cloud' => env('FILESYSTEM_CLOUD', 's3'),
/*
|--------------------------------------------------------------------------