Laravel 모델 의 scope 필터

모델 에 써 서 모델 호출 (관련 조회 와 유사) 을 제공 하여 이 범위 가 있 는 지 없 는 지 판단 합 니 다.
문법
public function scopeActive(Builder $query,    ){
  return $query->where('active', 1);
}

public function articleTopics(){
        return $this->hasMany('App\Http\Model\ArticleTopic','article_id','id');
}
doesntHave           
public function scopeTopicNotBy(Builder $query, $topic_id){
        return $query->doesntHave('articleTopics','and', function($q)use($topic_id){
            $q->where('topic_id', $topic_id);
        });
 }

해석: scope 로 시작 해 야 합 니 다.뒤에 첫 번 째 알파벳 대문자.뒤의 괄호 중 첫 번 째 는 Builder 여야 하고 두 번 째 매개 변 수 는 필요 에 따라 정의 할 수 있 습 니 다.반환 값 도 Builder 여야 합 니 다.
2. 용법:
$user = App\User::popular()->active()->orderBy('created_ar')->get();

전역 범위
같은 모델 에서 작성 하여 현재 모델 에 적용 합 니 다.
//  scope
    protected static function boot(){
        parent::boot();
        static::addGlobalScope('avaiable',function(Builder $builder){
            $builder->whereIn('status',[0,1]);
        });
    }

4. 전역 scope 를 어떻게 취소 합 니까?
어떤 곳 에 서 는 우리 가 이 전역 scope 를 사용 하지 못 하 므 로, 외부 테이프 에 withoutGlobalScope 를 제외 하면 된다.
Article::withoutGlobalScope('avaiable')->where('status', 0)->orderBy('created_at','desc')->paginate(10);

좋은 웹페이지 즐겨찾기