{% extends 'layouts/base.html.twig' %} {% block title %}Contact index {% endblock %} {% block body %}

Contact index

{% for contact in contacts %} {% else %} {% endfor %}
Id Name Email Subject Message CreatedAt UpdatedAt actions
{{ contact.id }} {{ contact.name }} {{ contact.email }} {{ contact.subject }} {{ contact.message }} {{ contact.createdAt ? contact.createdAt|date('Y-m-d H:i:s') : '' }} {{ contact.updatedAt ? contact.updatedAt|date('Y-m-d H:i:s') : '' }} show edit
no records found
Create new {% endblock %}