LaravelBook\Laravel4Powerpack\HTML::route PHP Method

route() public method

An array of parameters may be specified to fill in URI segment wildcards.
public route ( string $name, string $title = null, array $parameters = [], array $attributes = [], $absolute = true ) : string
$name string
$title string
$parameters array
$attributes array
return string
    public function route($name, $title = null, $parameters = array(), $attributes = array(), $absolute = true)
    {
        return $this->to($this->url->route($name, $parameters, $absolute), $title, $attributes);
    }