{{$employee->employer->company}}
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}}
@foreach($allowances as $allowance) @endforeach
Allowance Amount
{{ $allowance->allowance->type}} {{ $allowance->rate}}
   
Total {{$totalAllowance}}
@foreach($deductions as $deduction) @endforeach
Deduction Amount
{{$deduction->deduction->name}} {{$employee->rate * ($deduction->rate/100) }}
   
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