Efficiently\Larasset\Asset::assetUrl PHP Method

assetUrl() public method

This will use Asset::assetPath() internally, so most of their behaviors will be the same.
public assetUrl ( string $source, array $options = [] ) : string
$source string
$options array
return string
    public function assetUrl($source, array $options = [])
    {
        $assetPath = $this->assetPath($source, $options);
        return URL::asset($assetPath, Request::secure());
    }