From f14bd6413a3c72d0c7d2abf98e395987f79dc255 Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Tue, 4 Feb 2025 19:51:23 -0500 Subject: [PATCH] Add missing serve option to local filesystem disk --- config/filesystems.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/filesystems.php b/config/filesystems.php index 55d8df73..2a30fece 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -39,6 +39,7 @@ return [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app'), + 'serve' => true, 'throw' => true, ],