LaravelBook\Laravel4Powerpack\HTML::secure PHP Method

secure() public method

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