Display Cross sell on after cart table

Display cross-sell products after the cart table.

add_action('advanced_woo_discount_rules_before_loaded', function (){
    if(class_exists('\WDRPro\App\Rules\BuyXGetY')){
        remove_all_filters( 'woocommerce_cart_collaterals', 9 );
        add_action( 'woocommerce_after_cart_table', array('\WDRPro\App\Rules\BuyXGetY', 'loadCrossSellDisplay'), 9 );
    }
});