没有morphable_id列的Laravel多态关系

时间:2019-07-16 14:52:52

标签: laravel eloquent

有没有没有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多态关系或某些其他类型的关系来实现这一目标?

0 个答案:

没有答案