diff --git a/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php b/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php index 8a15dc5c..7cb86fee 100644 --- a/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php +++ b/app/Classes/Modules/Segments/ControllersLogic/ListAirShipmentPriceLogic.php @@ -136,6 +136,39 @@ class ListAirShipmentPriceLogic extends AbstractControllerLogic 'tax' => '', ]) ], + [ + 'details' => json_encode([ + 'name' => 'TV 30" - 36"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 500, + ]) + ], + [ + 'details' => json_encode([ + 'name' => 'TV 37" - 42"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 1000, + ]) + ], + [ + 'details' => json_encode([ + 'name' => 'TV 43"+"', + 'pricePerKg' => 28, + 'pricePerPcs' => '', + 'isProhibited' => '', + 'hasGram' => 'true', + 'hasDimensionCharges' => true, + 'tax' => 1500, + ]) + ] ); return $this->collectionResponse(AirShipmentItemPriceResource::collection($price));