From 84ada38a317550ecb7b7977eac8bfcb7ce76bcd4 Mon Sep 17 00:00:00 2001 From: "Marco A. Nina Mena" Date: Fri, 12 Sep 2025 15:43:45 -0400 Subject: [PATCH] Add disk data sources --- config/filesystems.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 182dde1afe..b8324ce346 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -83,6 +83,13 @@ 'visibility' => 'public', ], + 'data_sources' => [ + 'driver' => 'local', + 'root' => storage_path('app/public/data_sources'), + 'url' => env('APP_URL') . '/storage/data_sources', + 'visibility' => 'public', + ], + 'settings' => [ 'driver' => 'local', 'root' => storage_path('app/public/setting'),