I want show the numbers of the elements in a array, but I have this problem
Key "idTipoFarmaco" for array with keys "0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12" does not exist in FarmacoBundle:Default:chartTipos.html.twig at line 17
Template
{% block artic %}
{{ entities.idTipoFarmaco.nombreFarmaco|length}}
{% endblock %}
Function
public function chartTiposFAction()
{
$em = $this->getDoctrine()->getManager();
$entities = $em->getRepository('::Entity')->findAll();
return $this->render('::chartTipos.html.twig', array(
'entities' => $entities
));
}