@extends('layouts.master') @section('content')

Payslip Mismatches for Pay Run ID: {{ $payRunId }}

@if($results->isEmpty())
No mismatches found ✅
@else @foreach($results as $row)
Man Number: {{ $row->man_number }} | Gross Amount: {{ number_format($row->gross_earnings, 2) }} | Deductions: {{ number_format($row->deductions, 2) }} | Net Amount: {{ number_format($row->net_pay, 2) }}
{{-- Earnings Section --}}
Earnings
Count Total Amount
Earn Defs {{ $row->earn_defs_count }} {{ number_format($row->earn_defs_total, 2) }}
Earns {{ $row->earns_count }} {{ number_format($row->earns_total, 2) }}
{{-- Deductions Section --}}
Deductions
Count Total Amount
Dedu Defs {{ $row->dedu_defs_count }} {{ number_format($row->dedu_defs_total, 2) }}
Dedus {{ $row->dedus_count }} {{ number_format($row->dedus_total, 2) }}
{{-- Contributions Section --}}
Contributions
Count Total Amount
Cont Defs {{ $row->cont_defs_count }} {{ number_format($row->cont_defs_total, 2) }}
Conts {{ $row->conts_count }} {{ number_format($row->conts_total, 2) }}
@endforeach @endif
@endsection