Not the correct implementation of a Symfony route in a Controller. You're setting a param in the name:
#[Route('/employeeProducts', name: 'employeeProducts{id}')]
The param should be removed so the route definition looks like:
#[Route('/employeeProducts', name: 'employeeProducts')]