{{ form_start(productPriceForm) }}
|
|
{{ form_widget(productPriceForm.productProduct, {'attr': {'class': 'form-control', 'data-plugin-selectTwo': 'data-plugin-selectTwo'}}) }} |
{{ form_widget(productPriceForm.price, {'attr': {'class': 'form-control', 'placeholder': 'eg.: 5000'}}) }} |
{{ form_widget(productPriceForm.start_date, {'attr': {'class': 'form-control'}}) }} |
{{ form_widget(productPriceForm.end_date, {'attr': {'class': 'form-control'}}) }} |
|
{{ form_end(productPriceForm) }}
{% for customer_product_price in customer_customer.customerProductPrices %}
|
{{ loop.index }} |
{{ customer_product_price.productProduct }} |
{{ customer_product_price.price|number_format(2, ',', ' ') }} |
{{ customer_product_price.startDate ? customer_product_price.startDate|date('d/m/Y') }} |
{{ customer_product_price.endDate ? customer_product_price.endDate|date('d/m/Y') }} |
|
{% endfor %}