Is there any way to add an action button to table group?
I want to add an action button to the table group, when the action is pressed the all the items in the group will be affected. I know i can do it with bulk actions and select the group and update. But i want to use a button as the clients requirements
1 Reply
ActionGroup::make([
Action::make('view'),
Action::make('edit'),
Action::make('delete'),
])