From d42ae70e46ea714878bd2621c24606f2ec4a6a54 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 16 Jul 2026 09:48:50 +0530 Subject: [PATCH] added item code api route php --- routes/api.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/api.php b/routes/api.php index e3db558..cdc6d8d 100644 --- a/routes/api.php +++ b/routes/api.php @@ -234,3 +234,7 @@ Route::post('file/store', [SapFileController::class, 'store'])->name('file.store Route::get('/print-pallet/{pallet}/{plant}', [PalletPrintController::class, 'print'])->name('print.pallet'); Route::post('vehicle/entry', [VehicleController::class, 'storeVehicleEntry']); + +//..Item Code + +Route::get('item-code', [PlantController::class, 'getItemCode']);