{% extends '_include/base.html.twig' %} {% set currency = display_currency() %} {% block title %}Salary Advances ยท HR Management{% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_title %}Salary Advances{% endblock %} {% block page_actions %} New Advance {% endblock %} {% block content %}

Advance Records

{{ pagination.total }} total records

{% for advance in advances %} {% else %} {% endfor %}
Employee Amount Request Date Installments Remaining Status Actions
{{ advance.employee }} {{ advance.amount|format_currency(currency) }} {{ advance.requestDate ? advance.requestDate|date('Y-m-d') : '-' }} {{ advance.installments ?? '-' }} {{ advance.remainingAmount ? advance.remainingAmount|format_currency(currency) : '-' }} {{ advance.status|title }}
No advance records found
{% if pagination is defined %} {% include '_include/_pagination.html.twig' %} {% endif %}
{% endblock %}