diff --git a/app/Filament/Resources/InvoiceOutValidationResource.php b/app/Filament/Resources/InvoiceOutValidationResource.php index 1925009..f3b16f1 100644 --- a/app/Filament/Resources/InvoiceOutValidationResource.php +++ b/app/Filament/Resources/InvoiceOutValidationResource.php @@ -217,7 +217,7 @@ class InvoiceOutValidationResource extends Resource $uniqueKey = $plantCode . '_' . $qrCode; if (in_array($uniqueKey, $seenPlantQr)) { - $duplicateQrExcel[] = "Duplicate in file at Row {$index}: QR Code '{$qrCode}' already exists for Plant Code {$plantCode}"; + $duplicateQrExcel[] = "Duplicate in file at Row {$index}: Document Numbers '{$qrCode}' already exists for Plant Code {$plant->name}"; } $seenPlantQr[] = $uniqueKey; @@ -227,7 +227,7 @@ class InvoiceOutValidationResource extends Resource ->first(); if ($existsInDb) { - $duplicateQrDb[] = "QR Code '{$qrCode}' already exists in DB for Plant Code {$plantCode}"; + $duplicateQrDb[] = "Document Numbers '{$qrCode}' already exists in DB for Plant Code {$plant->name}"; } }