How to disable Livewire Auto upload to temp folder ?
Hello, i want to make manual "Upload" button with livewire, but livewire model is starting direct upload after selecting files
i try prevent but not work : wire:submit.prevent="submit" wire:model="pool_zip"
Code :
1 Reply
Depends on your livewire version, but for v3
wire:model
should only upload on submit. If you use v2, add .defer
on your model: https://laravel-livewire.com/docs/2.x/properties#deferred-updatingLivewire
Properties | Livewire
A full-stack framework for Laravel that takes the pain out of building dynamic UIs.