Livewire component inside Tab not save changes

I haves this componte Livewire inside Tab:
Tabs\Tab::make('Inmuebles Cruzados')
->schema(fn (Opportunity $opportunity) => [
Livewire::make(ListCrossedProperties::class, ['opportunity' => $opportunity])->columnSpanFull(),
])
Tabs\Tab::make('Inmuebles Cruzados')
->schema(fn (Opportunity $opportunity) => [
Livewire::make(ListCrossedProperties::class, ['opportunity' => $opportunity])->columnSpanFull(),
])
This component is visual, and has certain actions, but I don't need it to save anything when the save changes button is pressed. If I try to save changes (for Tab 1 fields) it doesn't execute anything. The button can be pressed but it doesn't show any error in console or network. What could I be doing wrong?
1 Reply
Daniel Reales
Daniel RealesOP3w ago
I add ->lazy() and it's works!

Did you find this page helpful?