Multiple file upload grid Reorderable not working

Hey, guys, this code, and it uploads images fine, but when I try to reorder them, its not even working. How do you solve this?

How to reorder already uploaded files?

  FileUpload::make('images')
->multiple()
->saveRelationshipsUsing(function ($record, $state) { ... })
// here, nothing gets evaluated. 
->reorderUploadedFilesUsing(function ($state) { dd($state); })
Was this page helpful?