added notification for characteritics not found in panel box validation #965

Merged
jothi merged 1 commits from ranjith-dev into master 2026-08-29 05:56:44 +00:00

View File

@@ -74,14 +74,14 @@ class CreatePanelBoxValidation extends CreateRecord {
// return $data;
// }
if(($data['serial_exists']) == true){
$this->halt();
}
if ($this->checkIfHasCharacteristics($data) && ($data['serial_exists']) == false) {
$this->showChecklist = true;
$this->halt();
}
if(($data['serial_exists']) == true){
$this->halt();
}
else{
if(!$this->checkIfHasCharacteristics($data) && ($data['serial_exists']) == false){
\Filament\Notifications\Notification::make()
->title('Characteristics not found for the scanned item.')
->danger()