From 8315b835b12ba815d4ba9067b676aa4281a0a95a Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 13 Feb 2026 19:49:50 +0530 Subject: [PATCH] Updated alignment on GET and POST structure --- app/Http/Controllers/CharacteristicsController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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);