#
@lang('app.amount') (@lang('app.monthly'))
@lang('payroll::modules.payroll.valueType')
@lang('app.date')
@lang('app.action')
@forelse($salaryHistory as $key=>$salary)
{{ $key + 1 }}
@if ($salary->type == 'initial')
{{ currency_format($salary->amount, ($currency->currency ? $currency->currency->id : company()->currency->id )) }}
@elseif($salary->type == 'increment')
+{{ currency_format($salary->amount, ($currency->currency ? $currency->currency->id : company()->currency->id )) }}
@elseif($salary->type == 'decrement')
-{{ currency_format($salary->amount, ($currency->currency ? $currency->currency->id : company()->currency->id )) }}
@endif
{{ $salary->type }}
{{ $salary->date->format($company->date_format) }}
@if ($salary->type == 'increment' || $salary->type == 'decrement')
@endif
@empty
@endforelse
@lang('app.total')
{{ currency_format($employeeSalary['netSalary'], ($currency->currency ? $currency->currency->id : company()->currency->id )) }}