Different configuration for Actions inside ActionGroup possible?
Is it possible to change the configuration of an
Action
with configureUsing()
if that action is inside an ActionGroup
? My goal is to have all actions be shown as an ->iconButton()
, but not if they're wrapped inside an ActionGroup
.Solution:Jump to solution
Solved with:
```php
ActionGroup::configureUsing(function (ActionGroup $actionGroup) {
$actions = $actionGroup->getActions();
foreach ($actions as $action) {...
1 Reply
Solution
Solved with: