/**
* Allow all the methods of BladeInstance to be called.
*
* @param string $name The name of the method to run
* @param array $arguments The parameters to pass to the method
*
* @return mixed
*/
public static function __callStatic($name, array $arguments)
{
return static::getInstance()->$name(...$arguments);
}