Buy x and get % discount - template override

Override templates for "Buy x, get % discount" promotions.

<?php
/**
 * List matched Rules in Table format
 *
 * This template can be overridden by copying it to yourtheme/plugin-folder-name/discount-table.php
 */

if (!defined('ABSPATH')) exit; // Exit if accessed directly
if (!isset($table_data) || empty($table_data)) return false;
$base_config = (is_string($data)) ? json_decode($data, true) : (is_array($data) ? $data : array());
$show_discount_title_table = isset($base_config['show_discount_title_table'])? $base_config['show_discount_title_table']: 'show';
$show_column_range_table = isset($base_config['show_column_range_table'])? $base_config['show_column_range_table']: 'show';
$show_column_discount_table = isset($base_config['show_column_discount_table'])? $base_config['show_column_discount_table']: 'show';
?>
<table class="woo_discount_rules_table">
    <tbody>
    <?php
    $have_discount = false;
    $table = $table_data;
    foreach ($table as $index => $item) {
        if ($item) {
            foreach ($item as $id => $value) {
                ?>
                <tr class="wdr_tr_body">
                    <?php if ($show_discount_title_table == 'show') { ?>
                        <td class="wdr_td_body_title">Buy <?php echo $value->min_qty; ?> and get <?php echo $table_data_content[$index.$id]['discount']; ?> as discount</td>
                    <?php } ?>
                </tr>
            <?php }
            $have_discount = true;
        }
    }
    if (!$have_discount) {
        ?>
        <tr class="wdr_tr_body_no_discount">
            <td>
                <?php esc_html_e('No Active Discounts.', 'woo-discount-rules'); ?>
            </td>
        </tr>
        <?php
    }
    ?>
    </tbody>
</table>