We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69efcc7 commit fb5ff84Copy full SHA for fb5ff84
resources/views/includes/actions/mergedButton.blade.php
@@ -26,8 +26,12 @@
26
></i>
27
</span>
28
@endif
29
-
30
- <x-livewire-tables::shared.label :attributes="$action->getLabelAttributesBag()" :hasIcon="$action->hasIcon()" :iconRight="$action->getIconRight()">
+ <span {{ $action->getLabelAttributesBag()->merge()->class([
+ 'w-11/12 ',
31
+ 'order-1' => $action->hasIcon() && $action->getIconRight(),
32
+ 'order-2' => $action->hasIcon() && !$action->getIconRight(),
33
+ ]) }}>
34
{{ $action->getLabel() }}
- </x-livewire-tables::shared.label>
35
+ </span>
36
+
37
</a>
0 commit comments