{% extends 'base2.html.twig' %} {% block title %}Anuncio{% endblock %} {% block body %}

Anuncio

Id {{ anuncio.id }}
Titulo {{ anuncio.titulo }}
Descricao {{ anuncio.descricao }}
CreatedAt {{ anuncio.createdAt ? anuncio.createdAt|date('Y-m-d H:i:s') : '' }}
UpdatedAt {{ anuncio.updatedAt ? anuncio.updatedAt|date('Y-m-d H:i:s') : '' }}
Imagem {{ anuncio.imagem }}
back to list edit {{ include('anuncio/_delete_form.html.twig') }} {% endblock %}