@aware(['isTailwind', 'isBootstrap'])
@php($actionWrapperAttributes = $this->getActionWrapperAttributes())
merge($this->actionWrapperAttributes)
->class([
'flex flex-cols py-2 space-x-2' => $isTailwind && ($actionWrapperAttributes['default-styling'] ?? true),
'' => $isTailwind && ($actionWrapperAttributes['default-colors'] ?? true),
'd-flex flex-cols py-2 space-x-2' => $isBootstrap && ($this->actionWrapperAttributes['default-styling'] ?? true),
'' => $isBootstrap && ($actionWrapperAttributes['default-colors'] ?? true),
'justify-start' => $this->getActionsPosition === 'left',
'justify-center' => $this->getActionsPosition === 'center',
'justify-end' => $this->getActionsPosition === 'right',
'pl-2' => $this->showActionsInToolbar && $this->getActionsPosition === 'left',
'pr-2' => $this->showActionsInToolbar && $this->getActionsPosition === 'right',
])
->except(['default','default-styling','default-colors'])
}} >
@foreach($this->getActions as $action)
{{ $action->render() }}
@endforeach