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

fix: Handle the file removal event without manually deleting temporary files #24

Closed dasundev closed 6 months ago

dasundev commented 6 months ago

No need to remove temporary file from the Livewire's temporary upload directory manually. because, files older than 24 hours cleanup automatically by Livewire.

NOTE: If you are using S3 as the temporary_file_upload disk. you should run the following command:

php artisan livewire:configure-s3-upload-cleanup

For more details, refer to: https://livewire.laravel.com/docs/uploads#configuring-automatic-file-cleanup

Closes #20