الاسم: {{ $employee->name }}
الرقم الوظيفي: {{ $employee->employee_id }}
| الشهر | الراتب الإجمالي | إجمالي الاستقطاعات | إجمالي أقساط القروض | خصم الإجازات | الراتب الصافي |
|---|---|---|---|---|---|
| {{ $monthlyData['month_name'] }} | {{ number_format($monthlyData['gross_salary'], 2) }} {{ get_currency_code() }} | {{ number_format($monthlyData['deductions_total'], 2) }} {{ get_currency_code() }} | {{ number_format($monthlyData['loan_installments_total'], 2) }} {{ get_currency_code() }} | {{ number_format($monthlyData['leave_deduction'], 2) }} {{ get_currency_code() }} | {{ number_format($monthlyData['net_salary'], 2) }} {{ get_currency_code() }} |