有没有没有id列的多态关系创建方法吗?
我对表格有一些特定的结构
**entities**
id
entity_type_id
....
**entity_type_attributes**
id
entity_type_id
valuable_type (App\SomeValuableModelInt)
valuable_id - should be dynamic
....
**entity_attribute_value_text**
id
entity_id
entity_type_attribute_id
value
....
**entity_attribute_value_int**
id
entity_id
entity_type_attribute_id
value
....
**entity_attribute_value_datetime**
id
entity_id
entity_type_attribute_id
value
....
因此,基于此结构,仅当我能够匹配entity_id和entity_type_attribute_id时,我才能获得宝贵的ID。是否有任何方法可以通过laravel多态关系或某些其他类型的关系来实现这一目标?