From edae39c3c59c9e3fbdf8e9925b3ec2dd492fb12d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anna-Sara=20S=C3=A9lea?= Date: Tue, 27 Jan 2026 07:04:02 +0100 Subject: [PATCH] Added export disk --- config/filesystems.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index 3d671bd..4fe95ce 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -77,4 +77,30 @@ return [ public_path('storage') => storage_path('app/public'), ], + /* + |-------------------------------------------------------------------------- + | Exports + |-------------------------------------------------------------------------- + | + | + */ + + 'export' => [ + 'driver' => 'local', + 'root' => storage_path('app/exports'), + 'url' => env('APP_URL') . '/exports', + 'visibility' => 'public', + 'permissions' => [ + 'file' => [ + 'public' => 0644, + 'private' => 0600, + ], + 'dir' => [ + 'public' => 0755, + 'private' => 0700, + ], + ], + 'throw' => false, + ] + ];