html + limit in text column

Im trying to use html and limit words in a text column but it doesnot respect html format showing tags:

Tables\Columns\TextColumn::make('acciones')
                    ->html()
                    ->limit(10)


is there a way to use both?
Captura_de_pantalla_2023-07-16_a_las_11.53.49.png
Solution
They are both using formatStateUsing() under the hood so they overwrite each other. Check the code of both methods and combine them
Was this page helpful?