Added label to the routes
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

This commit is contained in:
dhanabalan
2026-05-08 15:07:05 +05:30
parent a230208718
commit 71e89c7927

View File

@@ -62,14 +62,21 @@ use Illuminate\Support\Facades\Route;
// 'data' => $request->all() // 'data' => $request->all()
// ]); // ]);
// }); // });
// OBD
Route::get('obd/get-test-datas', [ObdController::class, 'get_test']); Route::get('obd/get-test-datas', [ObdController::class, 'get_test']);
Route::get('obd/get-data', [ObdController::class, 'get_obd']); Route::get('obd/get-data', [ObdController::class, 'get_obd']);
Route::post('obd/store-data', [ObdController::class, 'store_obd']); Route::post('obd/store-data', [ObdController::class, 'store_obd']);
// Plant
Route::get('plant/get-all-data', [PlantController::class, 'get_all_data']); 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('sticker/get-master-type-data', [StickerMasterController::class, 'get_master_type']);
Route::get('/download-qr-pdf/{palletNo}', [PalletController::class, 'downloadQrPdf'])->name('download-qr-pdf'); Route::get('/download-qr-pdf/{palletNo}', [PalletController::class, 'downloadQrPdf'])->name('download-qr-pdf');