diff --git a/app/Http/Controllers/CharacteristicsController.php b/app/Http/Controllers/CharacteristicsController.php index c14d522..5cd841e 100644 --- a/app/Http/Controllers/CharacteristicsController.php +++ b/app/Http/Controllers/CharacteristicsController.php @@ -112,9 +112,9 @@ class CharacteristicsController extends Controller 'characteristics_type', 'name', 'inspection_type', - 'upper', 'lower', 'middle', + 'upper', ]); if ($characteristics->count() == 0) { @@ -2284,9 +2284,9 @@ class CharacteristicsController extends Controller 'name' => $charMaster?->name ?? '', 'inspection_type' => $charMaster?->inspection_type ?? '', 'characteristics_type' => $charMaster?->characteristics_type ?? '', - 'upper' => (string) $charMaster?->upper ?? '', 'lower' => (string) $charMaster?->lower ?? '', 'middle' => (string) $charMaster?->middle ?? '', + 'upper' => (string) $charMaster?->upper ?? '', ]; return response()->json($output, 200);