ranjith-dev #579

Merged
jothi merged 3 commits from ranjith-dev into master 2026-05-11 04:44:24 +00:00
Showing only changes of commit 71e89c7927 - Show all commits

View File

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