Commented success message

This commit is contained in:
dhanabalan
2025-07-10 10:21:53 +05:30
parent d75dcdfdd1
commit 1597795c74

View File

@@ -253,11 +253,11 @@ class CreatePalletValidation extends CreateRecord
if ($record) if ($record)
{ {
Notification::make() // Notification::make()
->title("Scanned serial number '{$serialNumber}' successfully inserted into pallet table!<br>Scan the next new serial number to proceed...") // ->title("Scanned serial number '{$serialNumber}' successfully inserted into pallet table!<br>Scan the next new serial number to proceed...")
->success() // ->success()
->duration(600) // ->duration(600)
->send(); // ->send();
$this->snoCount = PalletValidation::where('plant_id', $plantId) $this->snoCount = PalletValidation::where('plant_id', $plantId)
->where('pallet_number', $palletNumber) ->where('pallet_number', $palletNumber)
@@ -683,11 +683,11 @@ class CreatePalletValidation extends CreateRecord
if ($deleted) if ($deleted)
{ {
Notification::make() // Notification::make()
->title("Scanned serial number '$serialNumber' successfully removed from pallet table!<br>Scan the next exist serial number to remove...") // ->title("Scanned serial number '$serialNumber' successfully removed from pallet table!<br>Scan the next exist serial number to remove...")
->success() // ->success()
->duration(600) // ->duration(600)
->send(); // ->send();
$this->snoCount = PalletValidation::where('plant_id', $plantId) $this->snoCount = PalletValidation::where('plant_id', $plantId)
->where('pallet_number', $palletNumber) ->where('pallet_number', $palletNumber)