mithicher / file-attachment

Reusable file input blade component created with the magic of Laravel Livewire.
17 stars 14 forks source link

This component doesn't work with direct upload on S3 (with multiple uploads) #2

Open Dhofca opened 2 years ago

Dhofca commented 2 years ago

Unfortunately:

Livewire\Exceptions\S3DoesntSupportMultipleFileUploads
S3 temporary file upload driver only supports single file uploads. Remove the [multiple] HTML attribute from your input tag.
mithicher commented 2 years ago

@Dhofca currently Livewire does not support multiple direct images upload to S3. You will need to receive the images from your livewire first, then in your livewire component upload the images to S3 server.

Hope this helps! Thanks

Regards @mithicher