File "transaction_details.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Views/receipt/transaction_details.php
File size: 899 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/** @var object $transaction */
/** @var string $transactionTotal */
/** @var array $items */
/** @var array $discountItems */
/** @var string $subTotal */
/** @var string $orderTotal */
?>
<div class="ff_payment_transaction">
    <?php
    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', []);

    ?>
</div>