<x-dynamic-component :component="$getFieldWrapperView()" :field="$field"> Value is: {{ $testVar }} <div x-data="{ state: $wire.entangle('{{ $getStatePath() }}') }"> <!-- Interact with the `state` property in Alpine.js --> </div></x-dynamic-component>
<x-dynamic-component :component="$getFieldWrapperView()" :field="$field"> Value is: {{ $testVar }} <div x-data="{ state: $wire.entangle('{{ $getStatePath() }}') }"> <!-- Interact with the `state` property in Alpine.js --> </div></x-dynamic-component>
Now where it says 'value is' it correctly echoed the value of my
$testVar
$testVar
, but after updating via Composer it now throws an error
Package filament/forms Package Version v3.0.7 Laravel Version 10.17.1 Livewire Version dev-main 6e529b7 PHP Version PHP 8.2.0 Problem description Created a custom Form Field as described in the doc...