From eaa3dc6d1c378c404f1ffcbb03b1bd3594896bdf Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Tue, 24 May 2022 15:31:35 +0200 Subject: [PATCH] Update filesystems.php --- config/filesystems.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 6895c44..2cf77dc 100755 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -35,6 +35,11 @@ return [ 'root' => storage_path('app'), ], + 'backups' => [ + 'driver' => 'local', + 'root' => base_path('backups'), + ], + 'public' => [ 'driver' => 'local', 'root' => storage_path('app/public'),