Hello, I have an array in one of my models that stores images.
[ "url", "url", "url",]
[ "url", "url", "url",]
I want to render these images in my filament infolist. I've tried: Using a RepeatableEntry and then passing an ImageEntry in the schema but then couldn't pass the array index to the ImageEntry. Using a custom entry but couldn't find proper resources on how to do what I want. Following up on an old post in here asking the same thing about arrays but the response they got was also unclear.