How to show thumbnails on SpatieMediaLibraryFileUpload field?
Everything is working fine. I installed Spatie Media Library, imported the field, and I'm currently using it. I have it set up for multiple images.
SpatieMediaLibraryFileUpload::make('Imagenes')
->columnSpan('full')
->multiple()
->conversion('thumb')
->enableReordering(),
However, when I see the resource, it does show the the images, but it shows them as a list, and not the thumbnails. How can I do that? I understand SpatieMediaLibraryFileUpload is for uploads, but is there an other field to actually show images? Or can I use SpatieMediaLibraryFileUpload to display the images in some way?
SpatieMediaLibraryFileUpload::make('Imagenes')
->columnSpan('full')
->multiple()
->conversion('thumb')
->enableReordering(),
However, when I see the resource, it does show the the images, but it shows them as a list, and not the thumbnails. How can I do that? I understand SpatieMediaLibraryFileUpload is for uploads, but is there an other field to actually show images? Or can I use SpatieMediaLibraryFileUpload to display the images in some way?