ranjith-dev #334

Merged
jothi merged 3 commits from ranjith-dev into master 2026-02-14 07:44:54 +00:00
Showing only changes of commit 8315b835b1 - Show all commits

View File

@@ -112,9 +112,9 @@ class CharacteristicsController extends Controller
'characteristics_type', 'characteristics_type',
'name', 'name',
'inspection_type', 'inspection_type',
'upper',
'lower', 'lower',
'middle', 'middle',
'upper',
]); ]);
if ($characteristics->count() == 0) { if ($characteristics->count() == 0) {
@@ -2284,9 +2284,9 @@ class CharacteristicsController extends Controller
'name' => $charMaster?->name ?? '', 'name' => $charMaster?->name ?? '',
'inspection_type' => $charMaster?->inspection_type ?? '', 'inspection_type' => $charMaster?->inspection_type ?? '',
'characteristics_type' => $charMaster?->characteristics_type ?? '', 'characteristics_type' => $charMaster?->characteristics_type ?? '',
'upper' => (string) $charMaster?->upper ?? '',
'lower' => (string) $charMaster?->lower ?? '', 'lower' => (string) $charMaster?->lower ?? '',
'middle' => (string) $charMaster?->middle ?? '', 'middle' => (string) $charMaster?->middle ?? '',
'upper' => (string) $charMaster?->upper ?? '',
]; ];
return response()->json($output, 200); return response()->json($output, 200);