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');