src/Flexy/FrontBundle/Themes/IlaveU/templates/admin/shopadmin/order/field/tel.html.twig line 1
{# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
{# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
{# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
{% set order = entity.instance %}
{% if order.customer %}
{% if order.tel %}
{{ order.tel }}
{% elseif order.customer.phone %}
{{ order.customer.phone }}
{% else %}
{{ field.formattedValue }}
{% endif %}
{% else %}
{{ field.formattedValue }}
{% endif %}