I have this condition to show the notification when the expiration date is missing 30 days, but it is not doing what I want. Anyone have a better idea?
{% if entity.isExpired %}
strong>Alerta!</strong>O produto com o código {{ entity.id }} esta com a data de validade vencida
{% elseif entity.dataentrada == date(entity.isExpired)|date("-30 days") %}
<strong>Alerta!</strong> <a href="{{ path('armazem_showatual', { 'id': entity.id }) }}"> O produto com o código {{ entity.id }} esta com a pouco dias para fechar
{% endif %}