Lukas Jankauskas
How to collapse section on button click
Bit late to the party, but the section has
x-on:collapse-section.window
so you just need to give section an ID (in my use case I settled on the ID of the record being edited) and dispatch livewire event
->dispatch('collapse-section', ['id' => $record->id])
4 replies