| 12345678910111213141516171819 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- ?>
- <?php /** @var \Magento\Backend\Block\Template $block */ ?>
- <section class="admin__page-section order-shipment-billing-shipping">
- <div class="admin__page-section-title">
- <span class="title"><?= $block->escapeHtml(__('Payment & Shipping Method')) ?></span>
- </div>
- <div class="admin__page-section-content">
- <div class="admin__page-section-item order-payment-method">
- <?= /* @noEscape */ $block->getChildHtml('pickup_shipment_payment') ?>
- </div>
- <div class="admin__page-section-item order-shipping-method">
- <?= /* @noEscape */ $block->getChildHtml('pickup_shipment_shipping') ?>
- </div>
- </div>
- </section>
|