| Employee Name |
{{ $salary->employee->name }} |
Employee ID |
ICA00{{ $salary->employee->id }} |
| Designation |
{{ $salary->employee->designation ?: 'Staff' }} |
Department |
GSS - Operations |
| Working Days |
{{ $salary->working_days }} Days |
LOP Days |
{{ $salary->lop_days }} Days |
| Currency |
{{ $settings->currency_symbol ?? '₹' }} Indian Rupee |
Bank A/c |
{{ $salary->employee->account_number ?: 'XXXXXXXXXXXX' }} |
| Earnings Details |
| Basic Salary |
{{ number_format($salary->base_salary, 2) }} |
| HRA |
{{ number_format($salary->hra, 2) }} |
| Special Allowance |
{{ number_format($salary->special_allowance, 2) }} |
| Conveyance |
{{ number_format($salary->conveyance, 2) }} |
| Medical Allowance |
{{ number_format($salary->medical, 2) }} |
| LTA |
{{ number_format($salary->lta, 2) }} |
| Special Allowance #2 |
{{ number_format($salary->special_allowance_2, 2) }} |
| Gross Earnings |
{{ number_format($salary->gross_earnings, 2) }} |
| Deduction Details |
| ESIC (Employee) |
{{ number_format($salary->esic_employee, 2) }} |
| Professional Tax |
{{ number_format($salary->prof_tax, 2) }} |
| Income Tax (TDS) |
{{ number_format($salary->income_tax, 2) }} |
| Gross Deductions |
{{ number_format($salary->gross_deductions, 2) }} |
| |
| Reimbursements |
| Expense Reimbursement |
{{ number_format($salary->expense_reimbursements, 2) }} |
Total Net Payable Amount
{{ $settings->currency_symbol ?? '₹' }}{{ number_format($salary->net_pay, 2) }}
@php
$amount = $salary->net_pay;
$amount_in_words = "";
if (class_exists('NumberFormatter')) {
$f = new NumberFormatter('en_IN', NumberFormatter::SPELLOUT);
$amount_in_words = ucwords($f->format($amount));
} else {
// Simple Fallback (Manual logic from previous version)
$amount_in_words = "Check System for Words Support";
}
@endphp
Amount in words: {{ $amount_in_words }} Only
Employer ESIC: {{ number_format($salary->esic_employer, 2) }}
Gratuity Provision: {{ number_format($salary->gratuity, 2) }}
This is a computer-generated document and does not require a physical signature for system validation.
© {{ date('Y') }} {{ $settings->company_name ?: 'INFO CRM' }} | Confidential