update CUSTOM SEGMENTS price api

This commit is contained in:
edmondlang
2022-08-06 01:46:06 +08:00
parent f7a2861072
commit cd59debee4
8 changed files with 158 additions and 11 deletions
+1
View File
@@ -7,6 +7,7 @@ Route::group(['prefix' => 'segment', 'as' => 'segment.', 'namespace' => 'Segment
Route::delete('/delete/{id}', 'DeleteSegmentController@destroy')->name('delete');
Route::get('/{id}/show', 'FetchSegmentController@fetch')->name('show');
Route::put('/update/{id}', 'UpdateSegmentController@update')->name('update');
Route::put('price/update/{id}', 'UpdateSegmentPriceController@update')->name('price.update');
Route::get('/list', 'ListSegmentsController@list')->name('list');
Route::get('/air-shipment/item-price/list', 'ListAirShipmentPriceController@list')->name('air_shipment.price.list');