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, + ] + ];