@extends('layouts.master') @section('content')
{{ $title }}
This view allows the user to rollover {{ strtoupper($pamPayroll->short_description)}} payroll to the next month (Period).
@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
Total Employees
{{$pamPayroll->pamEmps->count()}}
Active Employees
Active
Terminated Employees
- hires
New Employees
+
Total Gross Pay
ZMW {{number_format($pamPayroll->getTotalGrossPay(), 2, '.', ',') }}
Total Deductions
ZMW {{number_format($pamPayroll->getTotalDeductions(), 2, '.', ',') }}
Net Pay
ZMW {{number_format($pamPayroll->getTotalNetPay(), 2, '.', ',') }}
PAYE
ZMW {{number_format($pamPayroll->getTotalTaxPaid(), 2, '.', ',') }}
{{$pamPayroll->short_description}} Payroll Details
# Period Start Date End Date Days in a Period
Current
{{$currentPamPayRunPeriod->calendar_month}}-{{$currentPamPayRunPeriod->calendar_year}} {{$currentPamPayRunPeriod->start_date}} {{$currentPamPayRunPeriod->end_date}} {{$currentPamPayRunPeriod->calendar_days_in_period}}
Next
{{$pamPayRunPeriod->calendar_month}}-{{$pamPayRunPeriod->calendar_year}} {{$pamPayRunPeriod->start_date}} {{$pamPayRunPeriod->end_date}} {{$pamPayRunPeriod->calendar_days_in_period}}
{{$pamPayroll->short_description}} Payroll checklist
@endsection @section('modal') @endsection @section('scripts') @endsection