简体   繁体   中英

If category is not active, then and products set no active Laravel

Hello I have Model category with global Scope:

 /**
 * The "booting" method of the model.
 *
 * @return void
 */
protected static function boot()
{
    parent::boot();

    static::addGlobalScope('active', function (Builder $builder) {
            $builder->where('active', true);
    });
}

public function products()
{
    return $this->hasMany(Product::class);
}

Model product:

protected static function boot()
{
    parent::boot();

    static::addGlobalScope('active', function (Builder $builder) {
            $builder->where('active', true);
    });
}
public function category()
{
    return $this->belongsTo(Category::class);
}

I need do, if category is not active, then set and products in this category is not active. How I can do this?

Now when category is not active, products can be showed on page. I can in model product add global scope of active category?

Try this (Product Model):

protected static function boot()
{
    parent::boot();

    static::addGlobalScope('active', function (Builder $builder) {
            $builder
                ->where('active', true)
                ->whereHas('category', function($query){
                    $query->where('active', true);
                });
    });
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM