@extends('layouts.master') @section('content')
{{ $title }}
@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif @if(session('success'))
{{ session('success') }}
@endif
{{-- Step 1 --}}
Note: This upload is for temporary employees with contracts between 1–11 months and a contract end date later than today. The upload must include only Man Number and Rate of Pay.
@foreach($summary as $row) @endforeach
Man No. Name Department Salary Scale Salary Scale basic Uploaded Basic Pay
{{ $row['manno'] }} {{ $row['employee_name'] }} {{ $row['department'] }} {{ $row['salary_scale'] }} {{ number_format($row['salary_scale_basic'], 2) }} {{ number_format($row['rate_of_pay'], 2) }}
Total Amount

ZMW {{ number_format($validatedTotalAmount, 2, '.', ',') }}

{{-- Step 2 --}}
@csrf @php $pamPayRunPeriods = \App\Models\PamPayRunPeriod::where('tax_year_id', $pamPayroll->currentPamPayRun->pamTaxTable->tax_year_id) ->where('period_status', 'active')->get(); @endphp
Recurrence Frequency @php $totalPeriods = 12; $fieldNamePrefix = 'recurrence_period_'; @endphp @for ($period = 1; $period <= $totalPeriods; $period++) @if($period % 6 == 1)
@endif
@if($period % 6 == 0 || $period == $totalPeriods)
@endif @endfor
{{-- Step 3 --}}
Finish!
You have reached the last step of the upload process!
{{-- Errors Panel --}}
Errors
  • @if (!empty($errors_import)) @foreach($errors_import as $item) @endforeach @else @endif
    {{ $item }}
    No errors found with the uploaded data
@endsection @section('scripts') @endsection