@extends('layouts.app') @section('page-title', __('Mismatched Payments')) @section('page-heading', __('Mismatched Payments')) @section('breadcrumbs') @stop @section('content')
@if($mismatchedPayments->isEmpty())
No mismatched payments found.
@else @foreach($mismatchedPayments as $payment) @endforeach
User ID Number Amount Cycle Productivity Tax Actions
{{ $payment->matched_name ?? $payment->imported_name ?? 'N/A' }} {{ $payment->id_number ?? 'N/A' }} {{ number_format($payment->amount_payable, 2) }} {{ $payment->paymentCycle->description }} {{ $payment->productivity }}% {{ number_format($payment->tax, 2) }}
{{ $mismatchedPayments->links() }} @endif
@endsection