Phiếu lương

Tháng: {{ $formattedMonth }}

Nhân viên: {{ $payroll->employee->name }}

Email: {{ $payroll->employee->email }}

Mô tả Số tiền
Lương cơ bản @if(($payroll->intern_salary > 0) || ($payroll->probation_salary > 0))
@if($payroll->intern_salary > 0) • Trong đó lương thực tập: {{ number_format($payroll->intern_salary, 0) }}
@endif @if($payroll->probation_salary > 0) • Trong đó lương thử việc: {{ number_format($payroll->probation_salary, 0) }}
@endif @if($payroll->official_salary > 0) • Trong đó lương chính thức: {{ number_format($payroll->official_salary, 0) }} @endif
@endif
{{ number_format($payroll->basic_salary, 0) }}
Phụ cấp {{ number_format($payroll->allowances, 0) }}
Thu nhập khác {{ number_format($payroll->other_income, 0) }}
Lương OT {{ number_format($payroll?->ot_amount, 0) }}
Trừ lương ngày vắng
({{ number_format(($payroll->absent_days ?? 0) - ($payroll->approved_leave_days ?? 0), 1) }} công tính phí x {{ number_format($perDayRate, 0) }} đ)
-{{ number_format($payroll->absence_deductions ?? 0, 0) }}
Tiền phạt
(Đi muộn, về sớm, quên chấm công)
-{{ number_format($payroll->penalty_amount, 0) }}
Các khoản khấu trừ {{ number_format($payroll->deductions, 0) }}
Lương nhận được {{ number_format($payroll->net_salary, 0) }}