@lang('payroll::modules.payroll.earning') |
@lang('app.amount') |
@lang('payroll::modules.payroll.basicPay') |
{{ currency_format($salarySlip->basic_salary, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!}
|
@foreach ($earnings as $key=>$item)
@if($key == 'Time Logs')
{{ ucfirst($key) }}
@if(array_key_exists("Total Hours",$earnings))
( @lang('payroll::modules.payroll.totalHours') {{$earnings['Total Hours']}} )
@endif |
{{ $item.' '.($currency->currency ? $currency->currency->currency_code : company()->currency->currency_code) }} |
@elseif($key != 'Total Hours')
{{ ucfirst($key) }} |
{{ $item.' '.($currency->currency ? $currency->currency->currency_code : company()->currency->currency_code) }} |
@endif
@endforeach
@forelse ($earningsExtra as $key=>$item)
{{ $key }} |
{{ currency_format($item, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!} |
@endforeach
@if($fixedAllowance > 0)
@lang('payroll::modules.payroll.fixedAllowance') |
{{ currency_format($fixedAllowance, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!} |
@endif
|
@lang('payroll::modules.payroll.deduction') |
@lang('app.amount') |
@foreach ($deductions as $key=>$item)
{{ $key }} |
{{ currency_format($item, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!} |
@endforeach
@foreach ($deductionsExtra as $key=>$item)
{{ $key }} |
{{ currency_format($item, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!} |
@endforeach
|
@lang('payroll::modules.payroll.grossEarning') |
{{ currency_format($salarySlip->gross_salary, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!}
|
|
@lang('payroll::modules.payroll.totalDeductions') |
{{ currency_format($salarySlip->total_deductions, ($payrollSetting->currency ? $payrollSetting->currency->id : company()->currency->id), false)}} {!! htmlentities($payrollSetting->currency ? $payrollSetting->currency->currency_code : company()->currency->currency_code) !!}
|
|