Wizard + Table
I am building a big wizard component and I am in the need for a table in a wizard section, but there's no built in support for that. I don't really see how I could also inject a livewire component in it. Has anyone figured out this?
I was leaning onto using the View::make(MyCustomComponent::class) but that leads to an undefined $table error meaning that it has no time to mount or something else is the problem.
Livewire\Exceptions\PropertyNotFoundException
Property [$table] not found on component: [app.filament.pages.edit-campaign]
The ViewTickets page works by default, but does not in my case when I try to inject it.
3 Replies
The only option I see as viable to be to make a blade component where I manually build the wizard, and insert the @livewire() stuff for the table view, but I don't know if that would help.
There should be an option to do it somehow 😄
Solution
That worked like a charm
Thanks