{% extends 'admin/layout.html.twig' %} {% block title %}Products - KitscoApp{% endblock %} {% block page_title %}Products{% endblock %} {% block content %}

{{ products|length }} product(s)

Manage Categories
Add Product
{% for product in products %} {% else %} {% endfor %}
Product Stock Price Actions
{% if product.imagePath %} {% else %}
{% endif %}
{{ product.name }} {% if product.description %}

{{ product.description|length > 50 ? product.description|slice(0, 50) ~ '...' : product.description }}

{% endif %}
{{ product.stockQuantity }} {{ product.unitPrice|money }} {# Desktop: inline buttons #} {# Mobile: dropdown menu #}

No products yet

Add your first product to include in invoices.

Add Product
{% endblock %}