From 91b409649007e77bb6f42f0db31641e2a2f9fd13 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 21 Jan 2025 09:03:57 -0600 Subject: [PATCH] update filesystem config --- config/filesystems.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index b564035a9..3d671bd91 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -35,6 +35,7 @@ return [ 'root' => storage_path('app/private'), 'serve' => true, 'throw' => false, + 'report' => false, ], 'public' => [ @@ -43,6 +44,7 @@ return [ 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, + 'report' => false, ], 's3' => [ @@ -55,6 +57,7 @@ return [ 'endpoint' => env('AWS_ENDPOINT'), 'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false), 'throw' => false, + 'report' => false, ], ],