From 9535c68dfe3aa3c6651263973f8021c9f18774d7 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 25 Jul 2018 10:44:37 -0700 Subject: [PATCH] Fixed base path in local file driver --- config/filesystems.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/filesystems.php b/config/filesystems.php index f770f78f2a..6fcf1386b4 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -54,7 +54,7 @@ return [ 'local' => [ 'driver' => 'local', - 'root' => base_path('/'), + 'root' => base_path(), ], 'ftp' => [