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