From f6df06878753a6d1d092091d41c32d88b4a84d91 Mon Sep 17 00:00:00 2001 From: James Collins Date: Fri, 29 Sep 2023 11:01:37 +1000 Subject: [PATCH] fix bad local storage url --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index 22ab4b3..115a39f 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -33,7 +33,7 @@ return [ 'local' => [ 'driver' => 'local', 'root' => storage_path('app/public'), - 'url' => env('APP_URL') . "/storage", + 'url' => env('APP_URL') . "/storage/{name}", 'public' => true, 'throw' => false, ],