我正在使用User
模型来获取user_type = 5
。它们与user_type = 3
表中的vendors
相关联。我想在User
或Vendor
模型中建立关系,这可以帮助我获得类型为users
的{{1}}以及5
类型的关联用户。< / p>
答案 0 :(得分:1)
要获取符合条件的数据,您可以使用范围,如下所示:
Library
使用它:
public function scopeMyType($query)
{
return $query->where('user_type ', 3);
}
你可以像这样建立自我关系:
$users = User::myType()->get();
// this will return users with type = 3