How can I get display the schema of a custom View?
Currently, the docs mention that we "may pass an array of child schema components to the schema() method of the component" here: https://filamentphp.com/docs/4.x/schemas/custom-components#rendering-the-components-child-schema
I have a custom component that I call like this
But when I refresh the page, I get the following error.
Am I missing something? I am on the latest version of the panel

Solution:Jump to solution
I am using it in a livewire component. I did find the issue, it was being imported from the wrong namespace. 🤦🏿♂️
Thanks for the guidance, it might've taken me a while to figure that one out...
2 Replies
Where you are you using the
View::make(), infolist, form, table?
Also with that, what's the use statement for View.Solution
I am using it in a livewire component. I did find the issue, it was being imported from the wrong namespace. 🤦🏿♂️
Thanks for the guidance, it might've taken me a while to figure that one out