{% extends 'washerman/dashboard.html.twig' %} {% block title %}Washerman Products{% endblock %} {% block dashboard_content %}

Add Laundry Products

{% for message in app.flashes('success') %}
{{ message }}
{% endfor %} {% for message in app.flashes('error') %}
{{ message }}
{% endfor %}

Added Products

{% for item in items %} {% else %} {% endfor %}
ID Image Product Wash Press Wash + Press Actions
{{ item.id }} {% if item.image %} Product Image {% else %} No image {% endif %} {{ item.product }} {{ item.washPrice ?? '-' }} {{ item.pressPrice ?? '-' }} {{ item.washAndPressPrice ?? '-' }} Edit
No products added yet
{% endblock %}