Exemplo n.º 1
0
/**
 * Return the path of a route with arguments passed if given.
 *
 * Options are parsed and replace {value} from route.
 *
 * path('edit-profile', 'id:12345')
 *
 * @param string $name
 * @param string $options
 * @return string
 */
function path($name, $options = null)
{
    return Routes::path($name, $options);
}