dasundev / livewire-dropzone

A Livewire Dropzone component for simple drag-and-drop file uploads.
https://dasun.dev/docs/livewire-dropzone
MIT License
161 stars 15 forks source link

Unlink in onFileRemoved function does not support S3 direct upload temporarily #20

Closed moobay9 closed 6 months ago

moobay9 commented 6 months ago
if (! $isNotTmpFilename) {
    unlink($file['path']);
}

This writing probably does not work as intended if you are setting up a temporary to S3 directly because the Storage::disk path takes precedence. [https://livewire.laravel.com/docs/uploads#uploading-directly-to-amazon-s3]

(I use DeepL)