# fluent-booking/2.5.0/app/Views/public/receipt/payment-info.php

Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution, version 2.5.0. 63 lines.

- Page: https://pluginprobe.com/plugins/fluent-booking/2.5.0/code/app/Views/public/receipt/payment-info.php
- Raw: https://pluginprobe.com/plugins/fluent-booking/2.5.0/raw/app/Views/public/receipt/payment-info.php
- Modified: 2026-08-28T13:36:38+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/fluent-booking/2.5.0/code/app/Views/public/receipt/payment-info.php#L10-L20`.

```php
<?php
defined( 'ABSPATH' ) || exit;

/**
 * @var object $order
 * @var array  $currency_settings
 */
?>

<div class="fluent_booking_payment_info">
    <table width="100%">
        <tbody>
            <tr>
                <td>
                    <div class="fluent_booking_payment_info_item fluent_booking_payment_info_item_order_id">
                        <?php if ($order->items) : ?>
                            <div class="fluent_booking_item_heading"><?php esc_html_e('Order ID:', 'fluent-booking'); ?></div>
                        <?php else : ?>
                            <div class="fluent_booking_item_heading"><?php esc_html_e('Submission ID:', 'fluent-booking'); ?></div>
                        <?php endif; ?>
                        <div class="fluent_booking_item_value">#<?php echo esc_attr($order->id); ?></div>
                    </div>
                </td>
                <td>
                    <div class="fluent_booking_payment_info_item fluent_booking_payment_info_item_date">
                        <div class="fluent_booking_item_heading"><?php esc_html_e('Date:', 'fluent-booking'); ?></div>
                        <div class="fluent_booking_item_value"><?php echo esc_attr(gmdate(get_option('date_format'), strtotime($order->created_at))); ?></div>
                    </div>
                </td>
                <?php if ($order->total_amount) : ?>
                    <?php
                        $currency_settings['currency_sign'] = \FluentBooking\App\Services\CurrenciesHelper::getCurrencySign($order->currency); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
                    ?>
                    <td>
                        <div class="fluent_booking_payment_info_item fluent_booking_payment_info_item_total">
                            <div class="fluent_booking_item_heading"><?php esc_html_e('Total Amount:', 'fluent-booking'); ?></div>
                            <div class="fluent_booking_item_value"><?php echo esc_attr(fluentbookingFormattedAmount($order->total_amount, $currency_settings)); ?></div>
                        </div>
                    </td>
                <?php endif; ?>
                <?php if ($order->payment_method) : ?>
                    <td>
                        <div class="fluent_booking_payment_info_item fluent_booking_payment_info_item_payment_method">
                            <div class="fluent_booking_item_heading"><?php esc_html_e('Payment Method:', 'fluent-booking'); ?></div>
                            <div class="fluent_booking_item_value"><?php echo esc_attr(ucfirst($order->payment_method)); ?></div>
                        </div>
                    </td>
                <?php endif; ?>
                <?php if ($order->status && $order->items) : ?>
                    <td>
                        <div class="fluent_booking_payment_info_item fluent_booking_payment_info_item_payment_status">
                            <div class="fluent_booking_item_heading"><?php esc_html_e('Payment Status:', 'fluent-booking'); ?></div>
                            <div class="fluent_booking_item_value"><?php echo esc_attr(ucfirst($order->status)); ?></div>
                        </div>
                    </td>
                <?php endif; ?>
            </tr>
        </tbody>
    </table>
</div>



```
