Hide label for action
I'm trying to hide the label of an action and I see that there's a
disableLabel
method but it doesn't hide the label.
When using ->label(false)
on the action the label gets hidden but there's an PHPStan warning:
What is the correct way to hide the label of an action?6 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
✅
what type of action is it
button? icon button? link?
Filament\Tables\Actions
so its a link?
try ->iconButton()
because setting an empty label is not accessible
works like a charme - thanks a lot!!!