# fluentform/6.2.4/app/Views/receipt/user_subscription_payments.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.4. 40 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.4/code/app/Views/receipt/user_subscription_payments.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.4/raw/app/Views/receipt/user_subscription_payments.php
- Modified: 2026-04-01T13:33:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/6.2.4/code/app/Views/receipt/user_subscription_payments.php#L10-L20`.

```php
<?php

defined('ABSPATH') or die;

// phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in view files
?>
<div class="ff_subscription_payments">
    <table style="width: 100%;border: 1px solid #cbcbcb;margin-top: 0;" class="table ffp_order_items_table ffp_table table_bordered">
        <thead>
        <tr>
            <th><?php esc_html_e('Amount', 'fluentform'); ?></th>
            <th><?php esc_html_e('Date', 'fluentform'); ?></th>
            <?php if($config['has_view_action']): ?>
            <th><?php esc_html_e('Actions', 'fluentform'); ?></th>
            <?php endif; ?>
        </tr>
        </thead>
        <tbody>
        <?php foreach ($transactions as $transaction): ?>
        <tr>
            <td>
                <span class="table_payment_amount"><?php echo fluentform_sanitize_html($transaction->formatted_amount); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Formatted amount contains decoded currency symbols ?> <?php echo esc_html(strtoupper($transaction->currency)) ?></span>
                <span class="ff_pay_status_badge ff_pay_status_<?php echo esc_attr($transaction->status); ?>">
                    <?php echo esc_html($transaction->status); ?>
                </span>
            </td>
            <td>
                <?php echo esc_html($transaction->formatted_date); ?>
            </td>
            <?php if($transaction->view_url): ?>
            <td>
                <a class="ff_pat_action_view" href="<?php echo esc_url($transaction->view_url) ?>"><?php echo esc_html($config['view_text']); ?></a>
            </td>
            <?php endif; ?>
        </tr>
        <?php endforeach; ?>
        </tbody>
    </table>
</div>

```
