FilamentF
Filament15mo ago
jamesro

HasManyThrough for select field

Hello,

Select field is not compatible with HasManyThrough ? Any way to make it work? i have

public function categorii()
    {
        return $this->hasManyThrough(Categorii::class, NecesareCategorii::class, 'id_necesar', 'id', 'id', 'id_categorie');
    }


But in my select field when I select and save the record, doesn't seems to be creating the relation
Was this page helpful?