A. PENGHASILAN |
|
B. PENGURANG |
|
Gaji yang Dibayarkan |
{{ number_format($isi->salary_paid,2,',','.') }} |
Pot. Iuran JHT |
{{ number_format($isi->jht_deduction,2,',','.') }} |
Rapel Gaji |
{{ number_format($isi->salary_arrears,2,',','.') }} |
Pot. Iuran BPJS |
{{ number_format((int)$isi->bpjs_deduction,2,',','.') }} |
Lembur
@if ($isi->overtime > 0)
{{ sprintf('(%s Jam)', number_format($isi->overtime,0,',','.')) }}
@endif
| {{ number_format($isi->overtime_salary,2,',','.') }} |
Pot. Iuran Jaminan Pensiun |
{{ number_format($isi->retirement_deduction,2,',','.') }}
|
{{ $isi->vendor_name == "PT. Sumberdaya Sewatama" ? "BPH" : "Reward" }}
|
{{ number_format($isi->reward,2,',','.') }} |
PPH 21 |
{{ number_format($isi->pph21,2,',','.') }} |
@if ($isi->others_backpay > 0 || $isi->others_deduction > 0)
@if ($isi->others_backpay > 0 )
Rapel Lain-lain |
{{ number_format($isi->others_backpay,2,',','.') }} |
@endif
@if ($isi->others_deduction > 0)
{{ $isi->others_deduction_desc ?? "-" }}
|
{{ number_format($isi->others_deduction,2,',','.') }} |
@endif
@endif
@if ($isi->day_shift_allowance > 0)
Shift Siang |
{{ number_format($isi->day_shift_allowance,2,',','.') }} |
@endif
@if ($isi->night_shift_allowance > 0)
Shift Malam |
{{ number_format($isi->night_shift_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->saturday_shift_allowance > 0)
Shift Sabtu |
{{ number_format($isi->saturday_shift_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->sunday_shift_allowance > 0)
Shift Minggu |
{{ number_format($isi->sunday_shift_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->holiday_shift_allowance > 0)
Shift Libur Nasional |
{{ number_format($isi->holiday_shift_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->meal_allowance > 0)
Tunjangan Meal |
{{ number_format($isi->meal_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->site_allowance > 0)
Tunjangan Site |
{{ number_format($isi->site_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->shift_allowance > 0)
Tunjangan Shift 3 |
{{ number_format($isi->shift_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->safety_allowance > 0)
Tunjangan Safety |
{{ number_format($isi->safety_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->transport_allowance > 0)
Tunjangan Transport atau Lain-lain |
{{ number_format($isi->transport_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->incentive > 0)
Insentif |
{{ number_format($isi->incentive,2,',','.') }} |
|
|
@endif
@if ($isi->accommodation > 0)
Akomodasi |
{{ number_format($isi->accommodation,2,',','.') }} |
|
|
@endif
@if ($isi->transport_site_allowance > 0)
Tunjangan Transport Site |
{{ number_format($isi->transport_site_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->placement_allowance > 0)
Tunjangan Penempatan |
{{ number_format($isi->placement_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->allowance > 0)
Allowance |
{{ number_format($isi->allowance,2,',','.') }} |
|
|
@endif
@if ($isi->sleep_over > 0)
Sleep Over |
{{ number_format($isi->sleep_over,2,',','.') }} |
|
|
@endif
@if ($isi->bpjs_allowance > 0)
Tunjangan BPJS |
{{ number_format($isi->bpjs_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->pph21_allowance > 0)
Tunjangan PPH21 |
{{ number_format($isi->pph21_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->assignment_call > 0)
Assignment Call |
{{ number_format($isi->assignment_call,2,',','.') }} |
|
|
@endif
@if ($isi->leave_allowance > 0)
Sisa Cuti |
{{ number_format($isi->leave_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->overtime_arrears > 0)
Rapel Overtime |
{{ number_format($isi->overtime_arrears,2,',','.') }} |
|
|
@endif
@if ($isi->phone_allowance > 0)
Pulsa |
{{ number_format($isi->phone_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->holiday_allowance > 0)
THR |
{{ number_format($isi->holiday_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->housing_allowance > 0)
Fasilitas Rumah |
{{ number_format($isi->housing_allowance,2,',','.') }} |
|
|
@endif
@if ($isi->others_payroll > 0)
{{ $isi->others_payroll_desc }} |
{{ number_format($isi->others_payroll,2,',','.') }} |
|
|
@endif
@php
$bruto = $isi->salary_paid + $isi->salary_arrears + $isi->overtime_salary + $isi->reward + $isi->others_backpay + $isi->meal_allowance + $isi->site_allowance + $isi->shift_allowance + $isi->safety_allowance + $isi->transport_allowance + $isi->placement_allowance + $isi->allowance + $isi->incentive + $isi->accommodation + $isi->transport_site_allowance + $isi->phone_allowance + $isi->holiday_allowance + $isi->sleep_over + $isi->bpjs_allowance + $isi->pph21_allowance + $isi->overtime_arrears + $isi->assignment_call + $isi->leave_allowance + $isi->housing_allowance + $isi->others_payroll + $isi->day_shift_allowance + $isi->night_shift_allowance + $isi->saturday_shift_allowance + $isi->sunday_shift_allowance + $isi->holiday_shift_allowance;
$netto = $isi->jht_deduction + $isi->bpjs_deduction + $isi->retirement_deduction + $isi->pph21 + $isi->others_deduction;
$total = $bruto-$netto;
@endphp
PENGHASILAN BRUTO |
{{ number_format($bruto,2,',','.') }} |
C. JUMLAH PENGURANG |
{{ number_format($netto,2,',','.') }} |