Eloquent::scopes PHP 메소드

scopes() 공개 정적인 메소드

Add the given scopes to the current builder instance.
public static scopes ( array $scopes ) : mixed
$scopes array
리턴 mixed
        public static function scopes($scopes)
        {
            return \Illuminate\Database\Eloquent\Builder::scopes($scopes);
        }
Eloquent