Force refresh of nested components

Hello,

i have a nested tree-like data.

@foreach ($categories as $category)
     @livewire('pages.admin.assemblage.components.tree', ['categories' => $category['deep']], key($category['id']))
@endforeach

When i add new nodes to the root, component gets updated. when i add more nodes to children, component does not get updated. at least not the nested part.

is it possible to force render also child components?

1 Like