From a9df0bf9a0aad68336ef190987ab6382f5a78df1 Mon Sep 17 00:00:00 2001 From: Marek Langer Date: Mon, 6 Oct 2025 23:50:30 +0200 Subject: [PATCH 1/2] Button has visibleIf --- src/Controls/Button.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Controls/Button.php b/src/Controls/Button.php index 42709c1..e98edf0 100644 --- a/src/Controls/Button.php +++ b/src/Controls/Button.php @@ -6,6 +6,7 @@ use InvolveDigital\LaravelForms\Traits\THasHtmlAttributes; use InvolveDigital\LaravelForms\Traits\THasView; +use InvolveDigital\LaravelForms\Traits\THasVisibleIf; use InvolveDigital\LaravelForms\Traits\THasWireOptions; class Button @@ -14,6 +15,7 @@ class Button use THasHtmlAttributes; use THasView; use THasWireOptions; + use THasVisibleIf; protected string $title; From d10bcd6427946db5f33f6defd2e5328e3ea3487c Mon Sep 17 00:00:00 2001 From: Marek Langer Date: Mon, 6 Oct 2025 23:50:45 +0200 Subject: [PATCH 2/2] Button has visibleIf --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e6a9394..08fcab5 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "involve-digital/laravel-forms", + "name": "zeddosx/laravel-forms", "description": "Simple laravel/livewire form builder", "type": "library", "license": "MIT",