Forms, Modals, ViewField and $livewire
Appears I can easily use $livewire in an ->afterStateUpdated to set something like $livewire->criteria = Criteria::find($state);, which then i can acccess from my ViewField with $this->criteria. But as soon as I try that same form in a modal, its no longer available. I need this form with a ViewField to work in both a standalone livewire component and a action modal. Ive set public $criteria on the livewire component, but assuming because if the modal, its not available. Suggestions?