Confirm Export Duplicates
@if (count($duplicates) > 0)
@csrf
Duplicate Records Found! The following records already exist. Check the ones you wish to import anyway.
@foreach ($duplicates as $index => $row) @endforeach
Keep? Invoice No Export Bill No Amount (USD) Realized Value Quantity (PCS) Realized Date Due Amount (USD)
{{ $row['invoice_no'] ?? 'N/A' }} {{ $row['export_bill_no'] ?? 'N/A' }} {{ number_format($row['amount'] ?? 0, 2) }} {{ number_format($row['realized_value'] ?? 0, 2) }} {{ $row['quantity'] ?? 0 }} {{ $row['date_of_realised'] ?? $row['realized_date'] ?? 'N/A' }} {{ number_format($row['due_amount'] ?? 0, 2) }}
Cancel Import
@else
No duplicate records found. All data will be imported.
@csrf
Go Back
@endif