{% extends('frontend/layout/base.html.twig') %} {% set title = 'Products' %} {% block content %} Products List Home Products List Category {% if currcat == null %} All {% else %} All {% endif %} {# @var cat \App\Entity\Category #} {% for cat in category %} {% if currcat == cat.name %} {{ cat.name }} {% else %} {{ cat.name }} {% endif %} {% endfor %} We found {{ productcount }} products available for you Supplier: All {% for supplier in suppliers %} {% if selected is defined and selected != null %} {% if selected == supplier.SupplierName %} {{ supplier.SupplierName }} {% else %} {{ supplier.SupplierName }} {% endif %} {% else %} {{ supplier.SupplierName }} {% endif %} {% endfor %} {% for product in products %} {# @var product \App\Entity\Products #} {{ product.category.name }} {{ product.name }} {% if product.price != null %} ${{ product.price }} {% endif %} {% endfor %} {% if currpage == 1 %} {% else %} {% endif %} {% for i in 1..pages %} {% if currpage == i %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if currpage == pages %} {% else %} {% endif %} {% endblock %}
We found {{ productcount }} products available for you