fixed import export

This commit is contained in:
Denis Duliçi
2021-05-23 02:27:44 +03:00
parent 35e29c2140
commit 21e14f1191
12 changed files with 112 additions and 34 deletions

View File

@@ -232,8 +232,8 @@ return [
| in conjunction with queued imports and exports.
|
*/
'remote_disk' => env('EXCEL_TEMPORARY_FILES_REMOTE_DISK', null),
'remote_prefix' => env('EXCEL_TEMPORARY_FILES_REMOTE_PREFIX', null),
'remote_disk' => env('EXCEL_TEMPORARY_FILES_REMOTE_DISK'),
'remote_prefix' => env('EXCEL_TEMPORARY_FILES_REMOTE_PREFIX'),
/*
|--------------------------------------------------------------------------
@@ -250,7 +250,7 @@ return [
| processed it.
|
*/
'force_resync_remote' => env('EXCEL_TEMPORARY_FILES_FORCE_RESYNC_REMOTE', null),
'force_resync_remote' => env('EXCEL_TEMPORARY_FILES_FORCE_RESYNC_REMOTE'),
],

View File

@@ -72,6 +72,13 @@ return [
'visibility' => 'public',
],
'temp' => [
'driver' => 'local',
'root' => storage_path('app/temp'),
'url' => app()->runningInConsole() ? '' : url('/') . '/temp',
'visibility' => 'private',
],
'uploads' => [
'driver' => 'local',
'root' => storage_path('app/uploads'),