HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //proc/self/root/proc/thread-self/cwd/pm/app/Views/subscriptions/subscription_total_section.php
<table id="subscription-item-table" class="table display dataTable text-right strong table-responsive">
    <tr>
        <td><?php echo app_lang("sub_total"); ?></td>
        <td style="width: 120px;"><?php echo to_currency($subscription_total_summary->subscription_subtotal, $subscription_total_summary->currency_symbol); ?></td>
        <?php if ($can_edit_subscriptions) { ?>
            <td style="width: 100px;"> </td>
        <?php } ?>
    </tr>

    <?php if ($subscription_total_summary->tax) { ?>
        <tr>
            <td><?php echo $subscription_total_summary->tax_name; ?></td>
            <td><?php echo to_currency($subscription_total_summary->tax, $subscription_total_summary->currency_symbol); ?></td>
            <?php if ($can_edit_subscriptions) { ?>
                <td></td>
            <?php } ?>
        </tr>
    <?php } ?>
    <?php if ($subscription_total_summary->tax2) { ?>
        <tr>
            <td><?php echo $subscription_total_summary->tax_name2; ?></td>
            <td><?php echo to_currency($subscription_total_summary->tax2, $subscription_total_summary->currency_symbol); ?></td>
            <?php if ($can_edit_subscriptions) { ?>
                <td></td>
            <?php } ?>
        </tr>
    <?php } ?>
    <tr>
        <td><?php echo app_lang("total"); ?></td>
        <td><?php echo to_currency($subscription_total_summary->balance_due, $subscription_total_summary->currency_symbol); ?></td>
        <?php if ($can_edit_subscriptions) { ?>
            <td></td>
        <?php } ?>
    </tr>
</table>