LaravelBook\Laravel4Powerpack\HTML::secureAsset PHP Method

secureAsset() public method

Generate a HTTPS HTML link to an asset
public secureAsset ( string $url, string $title = null, array $attributes = [] ) : string
$url string
$title string
$attributes array
return string
    public function secureAsset($url, $title = null, $attributes = array())
    {
        return $this->asset($url, $title, $attributes, true);
    }