@chrisgrim The route function in vendor/laravel/framework/src/Illuminate/Foundation/helpers.php file.
function route($name, $parameters = [], $absolute = true)
{
return app('url')->route($name, $parameters, $absolute);
}
You should use array to pass multiple attributes.
like this:
route('brand_names', [$brand->slug, $channelId]);
The order of array items is your order in the route parameters definition.