@extends('layouts.app') @section('content')
| الأيام المسموح بها شهريًا: | {{ $payroll->employee->monthly_leave_days_allowed ?? 0 }} يوم |
|---|---|
| الأيام المستخدمة (من السجل): | {{ $usedLeaveDays ?? 0 }} يوم |
| الأيام الزائدة: | {{ $excessDays ?? 0 }} يوم |
| {{ __('payroll.labels.daily_rate') }}: | {{ number_format($dailyRate ?? 0, 2) }} {{ get_currency_code() }} |
| خصم الإجازات: | - {{ number_format($leaveDeduction ?? 0, 2) }} {{ get_currency_code() }} |
| الحالة: | {{ $payroll->status == 'paid' ? 'مدفوع' : ($payroll->status == 'pending' ? 'قيد الدفع' : 'ملغى') }} |
|---|---|
| تاريخ الإنشاء: | {{ $payroll->created_at->format('Y-m-d H:i') }} |
| تاريخ الدفع: | {{ $payroll->paid_at->format('Y-m-d H:i') }} |
| {{ __('payroll.create.overtime_hours', [], null) ?: 'ساعات الأوفر تايم لهذا الشهر' }}: | {{ number_format($attendanceOvertimeHours ?? 0, 2) }} {{ __('payroll.labels.hours', [], null) ?: 'س' }} |
| {{ __('payroll.create.overtime_amount', [], null) ?: 'قيمة الأوفر تايم' }}: | {{ number_format($overtimeAmount ?? 0, 2) }} {{ get_currency_code() }} |