Hi @Abdulaziz,
You can try with the following code, if will add the request a quote link next to the price:
add_filter('woocommerce_cart_item_price', 'n2t_woocommerce_cart_item_price');
function n2t_woocommerce_cart_item_price($price, $cart_item, $cart_item_key) {
$request_quote_button = 'Your button go here';
return $price . $request_quote_button;
}
For more information, please take a look at this document: https://docs.yithemes.com/yith-woocommerce-request-a-quote/
Hope it helps!