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





Lista de anĂșncios

{% for anuncio in anuncios %} {% else %} {% endfor %}
Id Titulo Descricao CreatedAt UpdatedAt Imagem actions
{{ anuncio.id }} {{ anuncio.titulo }} {{ anuncio.descricao }} {{ anuncio.createdAt ? anuncio.createdAt|date('Y-m-d H:i:s') : '' }} {{ anuncio.updatedAt ? anuncio.updatedAt|date('Y-m-d H:i:s') : '' }} {{ anuncio.imagem }} show edit
no records found
Create new
{% endblock %}