ViewField Form error.

I have a form with a ViewField in it.
ViewField::make('users')
                        ->columnSpan('full')
                        ->label(label: 'Company Users')
                        ->view('livewire.components.companies.company-users'),

When saving, I get an error stating that
users
does not exist.
Aside from the fact it does (in my Company model), I am unsure as to why - as a ViewField, that Filament is attempting to save the users.
Am I getting something wrong with the the nomenclature?
Solution
Oh goodness me.

My sincere apologies @Leandro Ferreira.
I've changed the ViewField to be just a View and it's all working now.

Apologies.
Was this page helpful?