Is there a way to get the full path, or at least a full URL, from an Illuminate\Routing\Route object? I understand I can use ->uri to get the path relative to the application root and use the url helper to get a full URL; but, is there a way to get the full, domain-relative path or the full URL directly from the Route object?
For example, if the application is located at example.com/foo, and the route URI is /bar/update, is there a method or attribute directly on the Route object that will give me either /foo/bar/update or http[s]://example.com/foo/bar/update?