diff --git a/src/Components/Concerns/HasLink.php b/src/Components/Concerns/HasLink.php index e01ca22..44b0d59 100644 --- a/src/Components/Concerns/HasLink.php +++ b/src/Components/Concerns/HasLink.php @@ -4,7 +4,7 @@ use Closure; -trait Haslink +trait HasLink { protected Closure|string|null $link = null; diff --git a/src/Components/Forms/SimpleAlert.php b/src/Components/Forms/SimpleAlert.php index 2617b0c..2cc8da9 100644 --- a/src/Components/Forms/SimpleAlert.php +++ b/src/Components/Forms/SimpleAlert.php @@ -5,7 +5,7 @@ use CodeWithDennis\SimpleAlert\Components\Concerns\HasColor; use CodeWithDennis\SimpleAlert\Components\Concerns\HasDescription; use CodeWithDennis\SimpleAlert\Components\Concerns\HasIcon; -use CodeWithDennis\SimpleAlert\Components\Concerns\Haslink; +use CodeWithDennis\SimpleAlert\Components\Concerns\HasLink; use CodeWithDennis\SimpleAlert\Components\Concerns\HasSimple; use CodeWithDennis\SimpleAlert\Components\Concerns\HasTitle; use Filament\Forms\Components\Field; @@ -15,7 +15,7 @@ class SimpleAlert extends Field use HasColor; use HasDescription; use HasIcon; - use Haslink; + use HasLink; use HasSimple; use HasTitle; diff --git a/src/Components/Infolists/SimpleAlert.php b/src/Components/Infolists/SimpleAlert.php index 7e13770..660490e 100644 --- a/src/Components/Infolists/SimpleAlert.php +++ b/src/Components/Infolists/SimpleAlert.php @@ -5,7 +5,7 @@ use CodeWithDennis\SimpleAlert\Components\Concerns\HasColor; use CodeWithDennis\SimpleAlert\Components\Concerns\HasDescription; use CodeWithDennis\SimpleAlert\Components\Concerns\HasIcon; -use CodeWithDennis\SimpleAlert\Components\Concerns\Haslink; +use CodeWithDennis\SimpleAlert\Components\Concerns\HasLink; use CodeWithDennis\SimpleAlert\Components\Concerns\HasSimple; use CodeWithDennis\SimpleAlert\Components\Concerns\HasTitle; use Filament\Infolists\Components\Entry; @@ -15,7 +15,7 @@ class SimpleAlert extends Entry use HasColor; use HasDescription; use HasIcon; - use Haslink; + use HasLink; use HasSimple; use HasTitle;