We used a minimum order quantity plugin and we need to show minimum order quantity on additional information tab along with product attributes.
function comcast_woocommerce_display_product_attributes($product_attributes, $product){
$product_attributes['customfield'] = [
'label' => __('MINIMUM', 'text-domain'),
'value' => get_post_meta($product->get_ID(), 'min_quantity', true),
];
return $product_attributes;
}
add_filter('woocommerce_display_product_attributes', 'comcast_woocommerce_display_product_attributes', 10, 2);


