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

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

@if($results->isEmpty())
No mismatches found ✅
@else @foreach($results as $row) @endforeach
Man Number Gross Amount Defs Count Earns Count Defs Total Earns Total
{{ $row->man_number }} {{ number_format($row->gross_earnings, 2) }} {{ $row->defs_count }} {{ $row->earns_count }} {{ number_format($row->defs_total, 2) }} {{ number_format($row->earns_total, 2) }}
@endif
@endsection