{% extends 'base.html.twig' %} {% block title %}Résultat recherche{% endblock %} {% block body %}
{% if tabsArticle == null and tabsVoiture == null %}

Aucun résultat pour la recherche : "{{search}}"

Oups ! Ce que vous recherchez n'existe pas !

On a surement du mal vous renseigner ! Aucun soucis, vous pouvez retourner à l'accueil ou visiter notre parc !

Retour à l'accueil Visiter notre parc !
{% else %}

Recherche : "{{search}}"

{% endif %}
{% if tabsVoiture != null %}

Résultat pour la catégorie voiture :

{% for voiture in tabsVoiture %} {% set urlvoiture = path('voitures_show',{'slug': voiture.slug}) %}
Prix {{ voiture.prix }}€/TTC
En {{ voiture.etat }}
{% endfor %}
{% endif %} {% if tabsArticle != null %}

Résultat pour la catégorie article :

{% for article in tabsArticle %} {% set urlarticle = path('articles_show',{'slug': article.slug}) %}
Publié le {{ article.createdAt | date('d/m/y') }} à {{ article.createdAt | date('H:i')}}

{{ article.titre }}

{% endfor %}
{% endif %}
{% endblock body %}