# fluentform/6.2.2/app/Views/receipt/transaction_details.php

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

- Page: https://pluginprobe.com/plugins/fluentform/6.2.2/code/app/Views/receipt/transaction_details.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.2/raw/app/Views/receipt/transaction_details.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.2/code/app/Views/receipt/transaction_details.php#L10-L20`.

```php
<?php

defined('ABSPATH') or die;

/** @var object $transaction */
/** @var string $transactionTotal */
/** @var array $items */
/** @var array $discountItems */
/** @var string $subTotal */
/** @var string $orderTotal */
?>
<div class="ff_payment_transaction">
    <?php
    // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped -- Content is escaped in the loaded view files
    echo \FluentForm\App\Modules\Payments\PaymentHelper::loadView('transaction_info', [
        'transaction' => $transaction,
        'transactionTotal' => $transactionTotal
    ]);

    echo \FluentForm\App\Modules\Payments\PaymentHelper::loadView('order_items_table', [
        'items' => $items,
        'discount_items' => $discountItems,
        'subTotal' => $subTotal,
        'orderTotal' => $orderTotal
    ]);

    echo \FluentForm\App\Modules\Payments\PaymentHelper::loadView('customer_details', [
        'transaction' => $transaction
    ]);

    echo \FluentForm\App\Modules\Payments\PaymentHelper::loadView('custom_css', []);
    // phpcs:enable WordPress.Security.EscapeOutput.OutputNotEscaped

    ?>
</div>

```
