Load custom LW component
Hi! I'm using Form Builder to just create a layout in Filament Page.
Is this the correct way to display custom Livewire component?
3 Replies
It certainly works and isn't a bad way. You could do: ->view('cart-component') if you have the blade component setup for the livewire element.
or view field:
https://filamentphp.com/docs/2.x/forms/fields#view
It does work, just wondered is it ok to do it like this. Thank you!