{{ __('Payslips') }}
{{ __('All Payslips') }}
| {{ __('Employee Name') }} | {{ __('Job Number') }} | {{ __('Overtime Hours') }} ({{ __('HH:MM:SS') }}) | {{ __('Deduction Hours') }} ({{ __('HH:MM:SS') }}) | {{ __('Absence Days') }} | {{ __('Annual Leave and Remote Work Days') }} | {{ __('Deputation') }} | {{ __('Gross Salary') }} | {{ __('Social Insurance Deduction') }} | {{ __('Net Salary') }} |
|---|---|---|---|---|---|---|---|---|---|
| {{ $p->employee->name ?? __('N/A') }} | {{ $p->employee->job_number ?? '-' }} | {{ $p->overtime_duration }} | {{ $p->delay_duration }} | {{ number_format($p->absence_days_for_period, 2) }} | {{ number_format($p->annual_leave_and_remote_work_days, 2) }} | {{ number_format($p->deputation_amount, 2) }} | {{ number_format($p->gross_salary, 2) }} | {{ number_format($p->insurance_amount, 2) }} | {{ number_format($p->net_salary, 2) }} |
___________________________
{{ __('Signature') }}