{# ── HEADER ── #}
Company Logo

EMPLOYEE PAY STUB

{% if salary %}
Pay Period: {{ salary.payrollMonth }}/{{ salary.payrollYear }}  |  Pay Date: {{ salary.payrollDate ? salary.payrollDate|date('m/d/Y') : 'N/A' }}
{% else %}
No payroll record on file
{% endif %}
{# ── EMPLOYER / EMPLOYEE INFO BAND ── #}
Employer
Starz ERP Inc.
Wyoming, USA
Employee
{{ employee_info.firstName|title }} {{ employee_info.lastName|title }}
ID: {{ employee_info.registrationNbr }}   {% if employee_info.workerType == 'w2' %}W-2 {% elseif employee_info.workerType == '1099' %}1099 {% elseif employee_info.workerType == 'both' %}W-2 1099 {% endif %}
SSN (last 4)
{% if employee_info.employeeCnss %} *** - ** - {{ employee_info.employeeCnss.ssn|slice(-4) }} {% else %} N/A {% endif %}
W-4 Status: {% if employee_info.employeeCnss %}{{ employee_info.employeeCnss.civilStatus }}{% else %}—{% endif %}  |  Dependents: {% if employee_info.employeeCnss %}{{ employee_info.employeeCnss.childrenNbr }}{% else %}0{% endif %}
{# ── SECOND INFO BAND: Job / Pay type ── #}
Job Category
{{ employee_info.category|default('—') }}
Pay Type
{% if employee_info.salaryType == 'F' %}Salary (Fixed) {% elseif employee_info.salaryType == 'H' %}Hourly {% elseif employee_info.salaryType == 'PR' %}Piece Rate {% elseif employee_info.salaryType == 'C' %}Commission {% else %}{{ employee_info.salaryType|default('—') }} {% endif %}
Base Rate
{{ employee_info.salaryBase|format_currency(display_currency()) }}
{% if salary %} {# ── EARNINGS ── #}
Earnings
{% if salary.overtimeAmount and salary.overtimeAmount > 0 %} {% endif %} {% if salary.bonuses and salary.bonuses > 0 %} {% endif %} {% if salary.allowances and salary.allowances > 0 %} {% endif %}
Description Hours Rate / Amount Current
Regular Pay {{ salary.baseSalary|format_currency(display_currency()) }} {{ salary.baseSalary|format_currency(display_currency()) }}
Overtime Pay (×1.5) {{ salary.overtimeHours|default('—') }} {{ salary.overtimeAmount|format_currency(display_currency()) }}
Bonus {{ salary.bonuses|format_currency(display_currency()) }}
Allowances {{ salary.allowances|format_currency(display_currency()) }}
Gross Pay {{ salary.grossSalary|format_currency(display_currency()) }}
{# ── DEDUCTIONS ── #}
Deductions & Withholdings
{% if salary.advanceDeduction and salary.advanceDeduction > 0 %} {% endif %} {% if salary.otherDeductions and salary.otherDeductions > 0 %} {% endif %}
Description Rate Current
Federal Income Tax (IRS Pub 15-T) Varies {{ salary.taxDeduction|format_currency(display_currency()) }}
Social Security (FICA) 6.20% {{ (salary.ficaDeduction * 0.062 / 0.0765)|format_currency(display_currency()) }}
Medicare (FICA) 1.45% {{ (salary.ficaDeduction * 0.0145 / 0.0765)|format_currency(display_currency()) }}
State Income Tax (Wyoming) 0.00% $0.00
Advance / Loan Repayment {{ salary.advanceDeduction|format_currency(display_currency()) }}
Other Deductions {{ salary.otherDeductions|format_currency(display_currency()) }}
Total Deductions {{ (salary.taxDeduction + salary.ficaDeduction + salary.advanceDeduction|default(0) + salary.otherDeductions|default(0))|format_currency(display_currency()) }}
{# ── NET PAY ── #}
Net Pay (Take-Home)
{{ salary.netSalary|format_currency(display_currency()) }}
{% else %}
No payroll record available for this employee.
{% endif %} {# ── FOOTER ── #}