@extends('layouts.sidebar') @section('content')
Salary Report
Covered Period: {{ \Carbon\Carbon::parse($payroll->start_date)->format('F j, Y') }} - {{ \Carbon\Carbon::parse($payroll->end_date)->format('F j, Y') }}
Name: {{ $payroll->employee->complete_name }}
| # of Days | Rate | Total |
|---|---|---|
| {{ $payroll->days_worked }} | {{ $payroll->employee->salary_rate }} | {{ $payroll->days_worked * $payroll->employee->salary_rate }} |
| {{ $payroll->gross_earnings }} |
| Benefits | Amount |
|---|---|
| SSS | {{ $payroll->sss_deduction }} |
| Pag-Ibig | {{ $payroll->pagibig_deduction }} |
| Philhealth | {{ $payroll->philhealth_deduction }} |
Notes: {{ $payroll->notes }}
| Description | Amount |
|---|---|
| Lates | {{ $payroll->late_undertime }} |
| {{ $deduction->benefit_name }} | {{ $deduction->amount }} |
| DCWD | {{ $payroll->dcwd }} |
| DLPC | {{ $payroll->dlpc }} |
| Grand Total | {{ $payroll->net_pay }} |