diff --git a/resources/views/components/simple-alert-field.blade.php b/resources/views/components/simple-alert-field.blade.php index 1d40ea6..900292a 100644 --- a/resources/views/components/simple-alert-field.blade.php +++ b/resources/views/components/simple-alert-field.blade.php @@ -8,8 +8,8 @@ :link="$getLink()" :link-label="$getLinkLabel()" :link-blank="$getLinkBlank()" - :actions="$getActions()" :actions-vertical-alignment="$getActionsVerticalAlignment()" + :actions="$getActions()" :border="$getBorder()" /> \ No newline at end of file diff --git a/src/Components/Infolists/SimpleAlert.php b/src/Components/Infolists/SimpleAlert.php index b4340cb..674a478 100644 --- a/src/Components/Infolists/SimpleAlert.php +++ b/src/Components/Infolists/SimpleAlert.php @@ -3,10 +3,12 @@ namespace CodeWithDennis\SimpleAlert\Components\Infolists; use Closure; +use CodeWithDennis\SimpleAlert\Components\Concerns\HasActionVerticalAlignment; use CodeWithDennis\SimpleAlert\Components\Concerns\HasBorder; use CodeWithDennis\SimpleAlert\Components\Concerns\HasColor; use CodeWithDennis\SimpleAlert\Components\Concerns\HasDescription; use CodeWithDennis\SimpleAlert\Components\Concerns\HasIcon; +use CodeWithDennis\SimpleAlert\Components\Concerns\HasIconVerticalAlignment; use CodeWithDennis\SimpleAlert\Components\Concerns\HasLink; use CodeWithDennis\SimpleAlert\Components\Concerns\HasSimple; use CodeWithDennis\SimpleAlert\Components\Concerns\HasTitle; @@ -14,10 +16,12 @@ class SimpleAlert extends Entry { + use HasActionVerticalAlignment; use HasBorder; use HasColor; use HasDescription; use HasIcon; + use HasIconVerticalAlignment; use HasLink; use HasSimple; use HasTitle;