我有Services
个与People
有多对多关系的联系人,并通过一个services_contacts
数据透视表进行了连接,我正在尝试在其中创建本地范围查询Service
模型以返回primaryContacts():
public function scopePrimaryContacts($query)
{
$pivot = $this->contacts()->getTable();
return $query->whereHas('contacts', function ($q) use ($pivot) {
return $q->where("{$pivot}.is_primary", true);
});
}
这将返回服务,在这里我需要它来返回与数据透视表本身上的is_primary
相关的人员。我希望能够在自己的$this->primaryContacts
模型上致电Service
,就像我可以致电$this->contacts
获取任何/所有联系人一样。有什么想法从这里去吗?以下是相关关系... contacts
模型上的Service
:
public function contacts()
{
return $this->belongsToMany(Person::class, 'services_contacts', 'service_uuid', 'person_uuid')
->withPivot('is_primary', 'is_active', 'contact_type_uuid')
->withTimestamps();
}
还有services
模型上的Person
:
public function services()
{
return $this->belongsToMany(Service::class, 'services_contacts', 'person_uuid', 'service_uuid');
}
答案 0 :(得分:2)
我不会将其作为范围,我将创建第二个关系函数,但要添加一些其他参数。
public function primaryContact()
{
return $this->belongsToMany(Person::class, 'services_contacts', 'service_uuid', 'person_uuid')
->wherePivot('is_primary', true)
->wherePivot('is_active', true);
}