如何在范围内获得 Eloquent 关系

How to get Eloquent relationship in scope

$这是命名空间 App\Models\Product;

protected $fillable = [ 'name', 'slug', 'company_id', 'original_price', 'discount_price', 'code', 'barcode', 'quantity', 'parent_id', 'position', 'status', 'short_description', 'long_description', 'approved', 'auto_approve' ];

代码:

public function childProducts()   
{ 
  return $this->hasMany(Product::class, 'parent_id', 'id'); 
}

我的范围

public function scopeActive($query) {
  return $query->where('status', 1); 
}

你可以这样做:

    public function scopeActive($query)
    {
        return $query->whereHas('childProducts', function($query) {
            $query->where('status', 1);
        });
    }

更新: 查看数量

    public function scopeActive($query)
    {
        return $query->where('quantity', '>', 0)->whereHas('childProducts', function($query) {
            $query->where('status', 1)->where('quantity', '>', 0);
        });
    }