From 821ad2a9453dde98eec4b5df2779744358d23740 Mon Sep 17 00:00:00 2001 From: soeren Date: Fri, 5 Dec 2025 21:12:54 +0100 Subject: [PATCH] fixed storage path --- config/filesystems.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/filesystems.php b/config/filesystems.php index c88c271..e9d9dbd 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -38,7 +38,7 @@ return [ 'public' => [ 'driver' => 'local', - 'root' => public_path('storage'), + 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'visibility' => 'public', 'throw' => false, @@ -70,7 +70,7 @@ return [ */ 'links' => [ - public_path('storage') => public_path('storage'), + public_path('storage') => storage_path('app/public'), ], ];