Show images in columns in Infolist Image Entrey

You can make Image Entry list the images in columns, like 4 columns. Here for me it is listing all the images in a single line without making a line break after 4 images. Thanks
Fieldset::make('fotos')
                    ->label('Fotos do imóvel')
                    ->schema([
                        ImageEntry::make('imagens')
                            ->label('')
                            ->disk('public')
                            ->columns(4)
                    ])
                    ->columnSpanFull(), 
image.png
Was this page helpful?