hasOne(FilamentType::class); } // Filament belongs to a manufacturer public function manufacturer() { return $this->hasOne(Manufacturer::class); } // Filament belongs to a color public function color() { return $this->hasOne(Color::class); } }