LaravelBook\Laravel4Powerpack\HTML::secureAsset PHP Метод

secureAsset() публичный Метод

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