Confirm Import Duplicates
@if (count($duplicates) > 0)
@csrf
Duplicate Records Found! The following records already exist. Uncheck the ones you wish to skip.
@foreach ($duplicates as $index => $row) @endforeach
Skip? BTB LC NO. DATE Description Fabric Value Accessories Value Fabric Qty (Kgs) Accessories Qty Printing/Emb Qty Printing/Emb Value
{{ $row['btb_lc_no'] ?? 'N/A' }} {{ $row['date'] ?? 'N/A' }} {{ $row['description'] ?? 'N/A' }} {{ number_format($row['fabric_value'] ?? 0, 2) }} {{ number_format($row['accessories_value'] ?? 0, 2) }} {{ number_format($row['fabric_qty_in_kgs'] ?? 0, 2) }} {{ number_format($row['accessories_qty'] ?? 0, 2) }} {{ number_format($row['printing_embroidery_qty'] ?? 0, 2) }} {{ number_format($row['printing_embroidery_value'] ?? 0, 2) }}
Cancel Import
@else
No duplicate records found. All data will be imported.
@csrf
Go Back
@endif