Upload Files automatically in FileUpload after Drag & Drop
I would like to create a simple file upload form that automatically saves the files after drag & drop or after file selection in the location specified in the code without an additional submit button.
Would this be possible with Filament Forms?
Solution:Jump to solution
Okay after some digging in the Classes i found this:
```php
->afterStateUpdated(function (FileUpload $component) {
$component->saveUploadedFiles($component);
$this->updateMedia();...
1 Reply
Solution
Okay after some digging in the Classes i found this: