Stolz\Assets\Laravel\Facade::group PHP Метод

group() публичный статический Метод

Get the instance of the assets manager for a given group.
public static group ( string $group = 'default' ) : Manager
$group string
Результат Stolz\Assets\Manager
    public static function group($group = 'default')
    {
        $binding = "stolz.assets.group.{$group}";
        if (!static::$app->bound($binding)) {
            throw new \RuntimeException("Stolz\\Assets: Assets group '{$group}' not found in the config file");
        }
        return static::$app[$binding];
    }