How to hide actions in small screens
Hi I'm trying to hide my table actions in small screens. I've tried the visibleFrom but it's not working with actions.
I'm trying to build a responsive app and avoid scrolls.I'm good with hiding them or making them toggeable in small screens
Solution:Jump to solution
One option is to add some extra classes to your actions:
EditAction::make()->extraAttributes(['class' => 'hidden lg:flex']),
...1 Reply
Solution
One option is to add some extra classes to your actions:
EditAction::make()->extraAttributes(['class' => 'hidden lg:flex']),