diff --git a/config/filesystems.php b/config/filesystems.php index 5a95125..3a94c8a 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -33,7 +33,7 @@ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), - 'throw' => false, + 'throw' => true, ], 'public' => [ @@ -41,7 +41,7 @@ 'root' => storage_path('app/public'), 'url' => env('APP_URL') . '/storage', 'visibility' => 'public', - 'throw' => false, + 'throw' => true, ], 's3' => [ @@ -53,7 +53,7 @@ 'url' => env('AWS_URL'), 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), - 'throw' => false, + 'throw' => true, ], 'gcs' => [ @@ -63,7 +63,7 @@ 'bucket' => env('GOOGLE_CLOUD_STORAGE_BUCKET'), 'path_prefix' => env('GOOGLE_CLOUD_STORAGE_PATH_PREFIX', null), 'visibility' => 'public', - 'throw' => false, + 'throw' => true, ], ],