Laravel 8 通过中间表过滤关系
在定义关系时,你还可以使用 wherePivot
和 wherePivotIn
方法来过滤 belongsToMany
返回的结果:
return $this->belongsToMany('App\Models\Role')->wherePivot('approved', 1);
return $this->belongsToMany('App\Models\Role')->wherePivotIn('priority', [1, 2]);
return $this->belongsToMany('App\Models\Role')->wherePivotNotIn('priority', [1, 2]);