Name: {{$employee->first_name." ".$employee->last_name}} |
|
Bank Name: {{$employee->bank}} |
Bank Branch: {{$employee->bank_branch_name}} |
Bank A/C No: {{$employee->account_number}} |
|
Payslip No: {{$paySlipNumber}} |
|
|
Allowance |
Amount |
@foreach($allowances as $allowance)
{{ $allowance->allowance->type}} |
{{ $allowance->rate}} |
@endforeach
|
|
Total |
{{$totalAllowance}} |
|
Deduction |
Amount |
@foreach($deductions as $deduction)
{{$deduction->deduction->name}} |
{{$employee->rate * ($deduction->rate/100) }} |
@endforeach
|
|
Total |
{{$totalDeduction}} |
|
|
Tax: |
Amount |
Income Tax: |
{{ $income_tax }} |
FNPF |
{{$fnpf}} |
SRT |
{{$srt}} |
|
|
Total |
{{ $income_tax + $fnpf + $srt }} |
|
|
|
From date: |
{{$fromDate->format('Y-m-d')}} |
End date: |
{{$endDate->format('Y-m-d')}} |
|
|
Commission: |
{{$commission_amount}} |
Bonus: |
{{$total_bonus}} |
Gross Salary: |
{{$grossSalary}} |
Net Salary: |
{{$netSalary}} |
Total Salary |
{{$totalSalary}} |
|
|
Working Days |
LWOP |
Salary type |
Commissions |
{{$nonHolidayDates}} |
{{$lwop}} |
@if($employee->salary_type == "0") Fixed @elseif ($employee->salary_type == "0") Hourly @endif |
4 |
|