Este es mi controlador:
Código PHP:
Ver originalpublic function listado_oficialesAction() {
$em = $this->getDoctrine()->getEntityManager();
$oficiales = $em->getRepository('InvestigacionesPolicialesBundle:Oficial')->findAll();
return $this->render("InvestigacionesPolicialesBundle:Oficial:listado_oficiales.html.twig", array('oficiales' => $oficiales)); }
Y en mi vista tengo esto:
Código HTML:
Ver original<table class="listado" border="1"> {% for oficial in oficiales %}
<th>{{ oficial.id }}
</th> <th>{{ oficial.ci }}
</th> <th>{{ oficial.nombre }}
</th> <th>{{ oficial.apellidos }}
</th> {% endfor %}
El problema es que no me muestra el ID, sin embargo los demás datos me los muestra sin problemas.