From 09a3654e2fd73b83267974e754ecf82f2ab71cc7 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Mon, 27 Sep 2021 17:05:58 +0800 Subject: [PATCH] add packing list inbound custom route --- routes/packing_list.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/packing_list.php b/routes/packing_list.php index aa25028d..4eb27ddf 100644 --- a/routes/packing_list.php +++ b/routes/packing_list.php @@ -26,6 +26,7 @@ Route::group(['namespace' => 'PackingLists', 'as' => 'packing_list.', 'prefix' = Route::post('/create', 'CreatePackageController@create')->name('create'); Route::put('/update/{id}', 'UpdatePackageController@update')->name('update'); Route::delete('/delete/{id}', 'DeletePackageController@delete')->name('delete'); + Route::get('/inbound-custom-cleared', 'InboundCustomClearedController@list')->name('list.inbound.custom.cleared'); Route::put('/switch-packing-list/{id}', 'SwitchPackagePackingListController@switch')->name('switch.packing_list'); Route::group(['namespace' => 'PackageItems', 'prefix' => 'item', 'as' => 'item.'], function () {