View and manage payroll records
{{ session('success') }}
List of all payroll records in the system
| Employee | Month | Basic Salary | Total Earnings | Deductions | Net Pay | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ substr($payroll->user->name, 0, 1) }}
{{ $payroll->user->name }}
{{ $payroll->user->email }}
|
{{ \Carbon\Carbon::parse($payroll->month)->format('M Y') }}
|
PKR {{ number_format($payroll->basic_salary, 2) }} | PKR {{ number_format($payroll->basic_salary + $payroll->allowances + $payroll->bonuses + $payroll->overtime_amount + $payroll->commission_amount, 2) }} | PKR {{ number_format($payroll->deductions, 2) }} | PKR {{ number_format($payroll->net_salary, 2) }} | @if($payroll->status === 'paid') Paid @elseif($payroll->status === 'processed') Processed @else Pending @endif | |
|
No payroll records found. Create Payroll |
|||||||