@extends('layouts.app') @section('title', 'Payroll Reports') @section('content')
Total Gross Pay
LKR {{ number_format($summary['total_gross_pay'], 2) }}
Total Net Pay
LKR {{ number_format($summary['total_net_pay'], 2) }}
Total Employer Contributions
LKR {{ number_format($summary['total_employer_contributions'], 2) }}
| Period | Status | Gross Pay | EPF Employee | EPF Employer | ETF | Net Pay | Actions |
|---|---|---|---|---|---|---|---|
|
{{ $period->period_start->format('M d, Y') }} to {{ $period->period_end->format('M d, Y') }} |
{{ ucfirst($period->status) }} | LKR {{ number_format($period->getTotalGrossPay(), 2) }} | LKR {{ number_format($period->getTotalEPFEmployee(), 2) }} | LKR {{ number_format($period->getTotalEPFEmployer(), 2) }} | LKR {{ number_format($period->getTotalETF(), 2) }} | LKR {{ number_format($period->getTotalNetPay(), 2) }} | View |
| No payroll periods found for the selected date range | |||||||