@extends('layouts.app') @section('page-title', __('Mismatched Payments')) @section('page-heading', __('Mismatched Payments')) @section('styles') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($mismatchedPayments->isEmpty())
No mismatched payments found.
@else
@foreach($mismatchedPayments as $payment) @endforeach
Imported Name ID Number Amount Net Payable Cycle Productivity Tax Actions
{{ $payment->imported_name }} {{ $payment->id_number }} {{ number_format($payment->amount_payable, 2) }} {{ number_format($payment->net_payable, 2) }} {{ $payment->paymentCycle->description }} {{ number_format($payment->productivity, 1) }}% {{ number_format($payment->tax, 2) }}
@csrf @method('DELETE')
@endif
@endsection @push('scripts') @endpush