From 71e89c7927edeef894817c71d446a96a6ea11e16 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 8 May 2026 15:07:05 +0530 Subject: [PATCH] Added label to the routes --- routes/api.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/routes/api.php b/routes/api.php index e855e25..e3597b0 100644 --- a/routes/api.php +++ b/routes/api.php @@ -62,14 +62,21 @@ use Illuminate\Support\Facades\Route; // 'data' => $request->all() // ]); // }); + +// OBD + Route::get('obd/get-test-datas', [ObdController::class, 'get_test']); Route::get('obd/get-data', [ObdController::class, 'get_obd']); Route::post('obd/store-data', [ObdController::class, 'store_obd']); +// Plant + Route::get('plant/get-all-data', [PlantController::class, 'get_all_data']); +// Sticker Master Model Type + Route::get('sticker/get-master-type-data', [StickerMasterController::class, 'get_master_type']); Route::get('/download-qr-pdf/{palletNo}', [PalletController::class, 'downloadQrPdf'])->name('download-qr-pdf');