我有多个相互关联的表及其模型:"users","posts","tags","comments"
。
我想从所有这些模型中排除deactive
个用户的数据,并且只要调用了任何一个模型就不要返回deactive
的用户
我不想在他们的控制器中使用雄辩或查询生成器来排除那些“用户”,我需要在模型中执行此操作,以便将其应用于所有使用所述模型的地方。
与用户相关的帖子,评论和标签为:
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);
有可能吗,有什么方法可以做到?
答案 0 :(得分: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());
}
我希望此解决方案可以帮助其他人。