Eloquent::scopes PHP Méthode

scopes() public static méthode

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