secure() public method

Generate a secure, absolute URL to the given path.
public secure ( string $path, array $parameters = [] ) : string
$path string
$parameters array
return string
Example #1
0
 /**
  * Generate a secure, absolute URL to the given path.
  *
  * @param string $path
  * @param array $parameters
  * @return string 
  * @static 
  */
 public static function secure($path, $parameters = array())
 {
     return \Illuminate\Routing\UrlGenerator::secure($path, $parameters);
 }