{{Helper::getBusinessData()->business_name}} |
|||||||||||||||||||||||||||||||||
Salary Slip for {{date('M-Y',strtotime($employeeSalary->month))}} |
|||||||||||||||||||||||||||||||||
|
Employee Code : {{$employeeSalary->employee_code}} Employee Name : {{$employeeSalary->employeeName}} Department : {{$employeeSalary->department_name}} |
Department : {{$employeeSalary->month}} Bank Name : {{$employeeSalary->bank_name}} A/C No. : {{$employeeSalary->account_no}} |
||||||||||||||||||||||||||||||||
|
Earnings |
Deductions |
||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||
|
Net Pay ( Total Earnings - Total Deductions ) |
{{number_format($employeeSalary->total_salary,2)}} |
||||||||||||||||||||||||||||||||
|
@php
$total_amount = $employeeSalary->total_salary;
$t_amount = new NumberFormatter("en", NumberFormatter::SPELLOUT);
$num = explode('.', $total_amount);
@endphp
Amounts in Words : {{$t_amount->format($num[0])}} {{isset($num[1]) ? 'And '.$t_amount->format($num[1]).'Only': 'Only'}} |
|||||||||||||||||||||||||||||||||