From dc4ab4266369949328a388bff05c6be280c69d23 Mon Sep 17 00:00:00 2001 From: JulianPrieber <60265788+JulianPrieber@users.noreply.github.com> Date: Mon, 14 Feb 2022 12:52:24 +0100 Subject: [PATCH] Change public path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is one of multiple public path edits. For simplified usability, I am integrating the public Laravel directory into the root directory.  For this, I am changing every instance of 'public_path' to 'base_path' and will use this format in future changes as well. --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index 10c9d9b..6895c44 100755 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -66,7 +66,7 @@ return [ */ 'links' => [ - public_path('storage') => storage_path('app/public'), + base_path('storage') => storage_path('app/public'), ], ];