@extends('layouts.sidebar') @section('content')
RWEB Solution Corp
Payroll for {{ $period }}
Name | # of Days Regular | Rate | Total | # of Late | Late/min | Deduction (Benefits) | DCWD | DLPC | Total | Signature |
---|---|---|---|---|---|---|---|---|---|---|
{{ $payroll->employee->complete_name }} | {{ $payroll->days_worked }} | {{ number_format($payroll->employee->salary_rate, 2) }} | {{ number_format($payroll->employee->salary_rate * $payroll->days_worked, 2) }} | {{ $payroll->late }} | {{ number_format($payroll->late_undertime, 2) }} | {{ number_format($payroll->philhealth_deduction + $payroll->sss_deduction + $payroll->custom_deductions + $payroll->pagibig_deduction, 2) }} | {{ number_format($payroll->dcwd, 2) }} | {{ number_format($payroll->dlpc, 2) }} | {{ number_format($payroll->net_pay, 2) }} | |
Grand Total | {{ number_format($totalsByPeriod[$period]['total_regular'], 2) }} | {{ number_format($totalsByPeriod[$period]['net_pay'], 2) }} |
No payroll records found for this period.
@endif