| الموظف: {{ $payroll->user->name }} | التاريخ: {{ now()->format('Y-m-d') }} |
| الشهر: {{ $payroll->month }} / {{ $payroll->year }} | الرقم المرجعي: #{{ $payroll->id }} |
| الوصف (Description) | المبلغ (Amount) |
|---|---|
| الراتب الأساسي (Base Salary) | {{ number_format($payroll->base_salary, 2) }} |
| البونص / إضافي (Bonus) | {{ number_format($payroll->bonus, 2) }} |
| الخصومات (Deductions) | -{{ number_format($payroll->deductions, 2) }} |
| صافي الراتب (Total Payable) | {{ number_format($payroll->total_payable, 2) }} |