To get the discount info of each line item in cart

To get the discount info of each line item in cart

add_action('woocommerce_before_cart', function (){
    if(class_exists('\Wdr\App\Router')){
        $manage_discount = \Wdr\App\Router::$manage_discount;
        if (!WC()->cart->is_empty()){
            foreach (WC()->cart->cart_contents as $item){
                if(isset($manage_discount::$calculated_cart_item_discount[$item['key']])){
                    $discount_info_of_current_line_item = $manage_discount::$calculated_cart_item_discount[$item['key']];
                    //Here you get the discount info of current line item
                }
            }
        }
    }
});