->addColumn(
'Products',
fn(ProductCategory $category) => $countByCategories[$category->getId()] ?? 0,
ColumnTemplate::LINK,
fn(ProductCategory $category) => [
'route_name' => 'app_product_list',
'route_params' => [
'filters[category]' => category->getId()
]
]
)