排除模型中不满足条件的记录 laravel

Exclude records which does not meet condition in model in laravel

我有多个表及其相互关联的模型,名称为:"users","posts","tags","comments".

我想从所有这些模型中排除 deactive 用户的数据,并且无论何时调用任何模型,都不要 return 用户 deactive

我不想在控制器中使用 eloquent 或查询生成器排除那些 "users",我需要在模型中执行此操作,以便它适用于所有使用所述模型的地方。

与用户相关的帖子、评论和标签是:

 public function user()
 {
    return  $this->belongsTo('App\Models\User', 'user_id');
 }

我在相关模型中需要这样的东西:

$instance = $this->belongsTo('App\Models\User', 'user_id');
$instance->whereIsDeactive(0);//return active users only
return $instance;

在用户模型中是这样的:

return $this->whereIsDeactive(0);

这有可能吗?有什么办法可以做到吗?

感谢@Adam,我使用全局范围解决了这个问题。

这是 IsDeactive 全局范围:

namespace App\Scopes;

use Illuminate\Database\Eloquent\Scope;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;

class IsDeactiveScope implements Scope
{
    /**
     * Apply the scope to a given Eloquent query builder.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $builder
     * @param  \Illuminate\Database\Eloquent\Model  $model
     * @return void
     */
    public function apply(Builder $builder, Model $model)
    {
        $builder->where('is_deactive', 0);
    }
}

这是在用户模型中调用它的方式:

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

        static::addGlobalScope(new IsDeactiveScope());
    }

我希望这个解决方案对其他人有帮助。