From bff5d0e4814abe153123c4d43590b9158a614b52 Mon Sep 17 00:00:00 2001 From: Ezra Lazuardy Date: Wed, 11 Oct 2023 03:24:25 +0700 Subject: [PATCH] feat: update --- config/filesystems.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/filesystems.php b/config/filesystems.php index e9d9dbd..66c7c19 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -44,6 +44,12 @@ 'throw' => false, ], + 'tmp' => [ + 'driver' => 'local', + 'root' => env('AWS_USE_LAMBDA_STORAGE', true) ? '/tmp' : storage_path('app/temp'), + 'url' => env('AWS_USE_LAMBDA_STORAGE', true) ? '/tmp' : storage_path('app/temp'), + ], + 's3' => [ 'driver' => 's3', 'key' => env('AWS_ACCESS_KEY_ID'),