Reverse upload image preview

Hey, can we reverse the preview's order for the upload file ? The first uploaded image is the lastest in the aera. Can it be the first one like it's store in database ? Thx
Solution
@methos3469 Chain ->appendFiles()

https://filamentphp.com/docs/3.x/forms/fields/file-upload#reordering-files

FileUpload::make('attachments')
    ->multiple()
    ->reorderable()
    ->appendFiles()
Was this page helpful?