livewire-status-board
livewire-status-board copied to clipboard
Layout component?
Great package. My question is around using my layout components and sharing data.
In my case, for most of my pages I use Livewire's layoutData() when rendering the component's view, a la:
return view('livewire.pages.my-page')
->layoutData([
'section' => $this->section
]);
I know the package bypasses Livewire's native render. Aside from being able to publish the views themselves, is there a way I'm missing to override the render so I can push additional data?
Thanks for any help!