1
0
forked from poc/pds

Removed unwanted space line and updated indentations

This commit is contained in:
dhanabalan
2025-07-09 11:00:04 +05:30
parent 15849fc543
commit a4d2c20451

View File

@@ -439,7 +439,7 @@ class PalletValidationResource extends Resource
// if (!empty($data['locator_quantity'])) {
// $indicators[] = 'Locator Quantity: ' . $data['locator_quantity'];
// }
if (isset($data['locator_quantity']) && $data['locator_quantity'] !== '') {
if ($data['locator_quantity'] != null && $data['locator_quantity'] != '') { //isset($data['locator_quantity']) &&
$indicators[] = 'Locator Quantity: ' . $data['locator_quantity'];
}
@@ -492,7 +492,6 @@ class PalletValidationResource extends Resource
->required()
->reactive()
->columnSpan(2),
Forms\Components\Select::make('pallet_list')
->label('Select Pallet')
->searchable()