Removed unwanted space line and updated indentations
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user