From 435e4c2e3a1fd0a5739c0be584ea44a8f673c959 Mon Sep 17 00:00:00 2001 From: francoism90 Date: Thu, 31 Oct 2024 17:45:47 +0100 Subject: [PATCH] Add Macroable --- src/Views/Support/Component.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Views/Support/Component.php b/src/Views/Support/Component.php index ed777f5..59238ca 100644 --- a/src/Views/Support/Component.php +++ b/src/Views/Support/Component.php @@ -5,11 +5,13 @@ use Foxws\WireUse\Views\Concerns\WithHash; use Foxws\WireUse\Views\Concerns\WithLivewire; use Illuminate\Support\Traits\Conditionable; +use Illuminate\Support\Traits\Macroable; use Illuminate\View\Component as BaseComponent; abstract class Component extends BaseComponent { use Conditionable; + use Macroable; use WithHash; use WithLivewire; }