Is there a way to display tags in an infolist?
Just dipping my feet into filamentphp v3, loving it so far. I love the tags editor via forms. Is there a way to get a similar display for tags in an infolist?

Solution:Jump to solution
you probably want to remove the repeatable styled container + play with the columns so that it looks more tag-like as in rows https://filamentphp.com/docs/3.x/infolists/entries/repeatable#removing-the-styled-container
8 Replies
You can display TextEntry as a badge: https://filamentphp.com/docs/3.x/infolists/entries/text#displaying-as-a-badge
So for one field storing many tags you can use a RepeatableEntry wrapping TextEntry: https://filamentphp.com/docs/3.x/infolists/entries/repeatable
I tried this and they all got separated out.

Is there a way to combine elements in the repeatable entry... container? I'm not sure what the right verbiage is.
Solution
you probably want to remove the repeatable styled container + play with the columns so that it looks more tag-like as in rows https://filamentphp.com/docs/3.x/infolists/entries/repeatable#removing-the-styled-container
I'm not sure if this helps. There is a offical Filament Plugin for Spatie Tags.
https://filamentphp.com/plugins/filament-spatie-tags
This plugin is also used in the FilamentPHP demo: https://demo.filamentphp.com/
Spacing is a little strange, but I managed to get something that'll work

I may try this also, thanks!