{% extends 'admin/layouts/base.html.twig' %} {% set active = 'app_admin_affiliate' %} {% set breadcrumbs = [ { 'link': path('app_front_account'), 'title': 'Home' }, { 'title':'Affiliate Management', }, { 'title': 'Affiliate', } ]%} {% block content %}

Affiliate

Total Affiliate

{{ numberOfAffiliate is not null ? numberOfAffiliate : 'N/A'}}

Total Commission

{{ totalCommission is not null ? totalCommission|number_format(2,',','.') : 'N/A'}}

Total Sales

{{ totalRevenue is not null ? totalRevenue|number_format(2,',','.') : 'N/A'}}
Search
Reset
{% for user in users %} {% include 'admin/affiliate/row.html.twig' %} {% else %} {% endfor %}
Id Name Email Mobile Number Country Actions
No Records found
{{ include('helper/pagination_card_footer.html.twig', {'knp_result_set': users}) }}
{% endblock %} {% block javascripts %} {% endblock %}