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?