/** * Generate a URL to an asset from a custom root domain such as CDN, etc. * * @param string $root * @param string $path * @param bool|null $secure * @return string * @static */ public static function assetFrom($root, $path, $secure = null) { return \Illuminate\Routing\UrlGenerator::assetFrom($root, $path, $secure); }