05/12/2013, 10:27
|
| | Fecha de Ingreso: noviembre-2013
Mensajes: 83
Antigüedad: 11 años, 1 mes Puntos: 0 | |
Respuesta: Error Render Twig DateTime En la entidad tengo esto
/**
* @var \DateTime
*
* @ORM\Column(name="date_of_interview", type="date", nullable=false)
*/
private $dateOfInterview;
/**
* Set dateOfInterview
*
* @param \DateTime $dateOfInterview
* @return SchoolUseAdmin
*/
public function setDateOfInterview($dateOfInterview)
{
$this->dateOfInterview = $dateOfInterview;
return $this;
}
en la vista twig lo llamo asi
<li><a data-toggle="tab" href="#tab_{{ pp.id }}">{{ var.dateOfInterview|date('Y-m-d H:i:s') }}</a></li> |