|
{{ _trans('common.Gross Salary') }}
|
{{ currency_format(@$data['salary']->employee->basic_salary) }}
|
@if(@$data['salary']->isss_amount > 0 || @$data['salary']->afp_amount > 0 || @$data['salary']->income_tax_amount > 0)
|
{{ _trans('payroll.Descuentos de Ley') }}
|
{{ currency_format(@$data['salary']->isss_amount + $data['salary']->afp_amount + $data['salary']->income_tax_amount) }}
|
@endif
|
{{ _trans('common.Total Deduction') }}
|
{{ currency_format(@$data['salary']->absent_amount+$data['salary']->deduction_amount) }}
|
|
{{ _trans('common.Total Addition') }}
|
{{ currency_format(@$data['salary']->allowance_amount+$data['salary']->adjust) }}
|
|
{{ _trans('common.Total Payable') }}
|
{{ currency_format(number_format(@$data['salary']->net_salary, 2)) }}
|
|
{{ _trans('common.Total Paid') }}
|
{{ currency_format(number_format(@$data['salary']->net_salary - $data['salary']->due_amount, 2)) }}
|
|
{{ _trans('common.Total Due') }}
|
{{ currency_format(number_format($data['salary']->due_amount, 2)) }}
|