Added print spare pallet api route
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 14s

This commit is contained in:
dhanabalan
2026-09-04 14:11:34 +05:30
parent bb54180277
commit 37cabbc93d

View File

@@ -192,6 +192,10 @@ Route::get('get-pdf', [PdfController::class, 'getPdf']); // processorder/get-pdf
Route::get('laser/item/get-quality-master-data', [StickerMasterController::class, 'get_quality_master']);
// ..Model Master - Laser
// Route::get('laser/model-master/get', [StickerMasterController::class, 'get_master']);
// ..Part Validation
Route::get('laser/item/get-master-data', [StickerMasterController::class, 'get_master']);
@@ -264,8 +268,12 @@ Route::post('file/store', [SapFileController::class, 'store'])->name('file.store
Route::get('/print-pallet/{pallet}/{plant}', [PalletPrintController::class, 'print'])->name('print.pallet');
Route::get('/print-spare-pallet/{pallet}/{plant}', [PalletPrintController::class, 'printSpare'])->name('print.sparepallet');
Route::post('vehicle/entry', [VehicleController::class, 'storeVehicleEntry']);
// Item Code
Route::get('item-code', [PlantController::class, 'getItemCode']);
// Route::post('laser-stop-report', [SapFileController::class, 'laserStopReport']);