{{ __('Total Employees') }}
{{ number_format($totalEmployees) }}
100%{{ __('Monthly Payroll') }}
{{ $currencySymbol }} {{ number_format($currentMonthTotal / 1000, 0) }}K
@if($payrollTrend != 0) @if($payrollTrend >= 0) +{{ number_format(abs($payrollTrend), 0) }}% @else {{ number_format($payrollTrend, 0) }}% @endif @endif{{ __('Gross Pay') }}
{{ $currencySymbol }} {{ number_format($currentMonthGross / 1000, 0) }}K
{{ __('Latest') }}{{ __('Deductions') }}
{{ $currencySymbol }} {{ number_format($currentMonthDeductions / 1000, 0) }}K
{{ $currentMonthGross > 0 ? number_format(($currentMonthDeductions/$currentMonthGross)*100, 0) : 0 }}%{{ __('New Hires') }}
{{ $recentEmployees->count() }}
{{ __('Expiring') }}
{{ $expiringContracts->count() }}
{{ __('Gross Pay') }}
{{ $currencySymbol }} {{ number_format($currentMonthGross / 1000, 0) }}K
{{ __('Total Deductions') }}
{{ $currencySymbol }} {{ number_format($currentMonthDeductions / 1000, 0) }}K
{{ __('Net Pay') }}
{{ $currencySymbol }} {{ number_format($currentMonthTotal / 1000, 0) }}K
{{ $contract->employee->first_name }} {{ $contract->employee->last_name }}
{{ __('Expires') }}: {{ \Carbon\Carbon::parse($contract->end_date)->format('M d, Y') }}
{{ __('No contracts expiring soon.') }}
{{ $employee->first_name }} {{ $employee->last_name }}
{{ $employee->department ? ucfirst($employee->department) : 'N/A' }}
{{ __('No employees added recently.') }}