From f66c8a8eb611a3534f3783c7400becd621a888c3 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Fri, 30 Jan 2026 23:41:21 +0100 Subject: [PATCH] update filesystems to change dynamically the storage path --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index 3d671bd..a7051c7 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -40,7 +40,7 @@ return [ 'public' => [ 'driver' => 'local', - 'root' => storage_path('app/public'), + 'root' => storage_path(env('STORAGE_PATH')), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false,