use morphOne with select

hey there, i want to use a select with my morphOne relationship.

YouthDepartments and Families are different Models and both have ExternalContacts. For the YouthDepartment, this ExternalContact is the economicManager.

    
public function contactable()
    {
        return $this->morphTo();
}


public function economicManager() {
        $this->morphOne(ExternalContact::class, 'contactable');
}


I want to display a select with createOption in the YouthDepartments form, but i am stuck on how to implement this. According to the Filament Docs, Select is not compatible with MorphOne
Was this page helpful?