Override Model for Create/EditAction?

Shouldnt this work?
->form(fn() => PropertyManager::getForm())
->model(PropertyManager::class)
This is for individual HeaderActions in a Table that is based of the User model, but I want to create an entry in a different model (well my action() will create some aspects in User as well). Anyway, when I launch the form, it says Call to undefined method App\Models\User::lead_source() and thats because its trying to load it in the User class and not the PropertyManager class that i specified with ->model(). Are my assumptions incorrect?
Was this page helpful?