{% extends 'frontend/layouts/index.html.twig' %} {% set active = 'app_front_my_customers' %} {% set breadcrumbs = [ { 'link': path('app_front_dashboard'), 'title': 'Home' }, { 'title': 'Network', }, { 'title': 'My Customers', } ]%} {% block content %}
Search
To
Reset
{# #} {% for customer in myCustomer %} {% include 'frontend/my_customers/row.html.twig' %} {% else %} {% endfor %}
{{ knp_pagination_sortable(myCustomer, 'Name', 'myCustomer.name') }} {{ knp_pagination_sortable(myCustomer, 'Product', 'myCustomer.Procut_name') }} {{ knp_pagination_sortable(myCustomer, 'Product Amount', 'myCustomer.product_amount') }} {{ knp_pagination_sortable(myCustomer, 'Commission', 'myCustomer.amount') }} {{ knp_pagination_sortable(myCustomer, 'Date', 'myCustomer.created_at') }}{{ knp_pagination_sortable(myCustomer, 'Status', 'myCustomer.status') }}
No Records found
{{ include('helper/pagination_card_footer.html.twig', {'knp_result_set': myCustomer}) }}
{% endblock %} {% block javascripts %} {% endblock %}