comments.phtml 868 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. // @codingStandardsIgnoreFile
  7. ?>
  8. <?php
  9. /**
  10. * @var $block \Magento\Sales\Block\Order\Comments
  11. * @see \Magento\Sales\Block\Order\Comments
  12. */
  13. ?>
  14. <?php if ($block->hasComments()):?>
  15. <div class="order additional details comments">
  16. <h3 class="subtitle"><?= /* @escapeNotVerified */ $block->getTitle() ?></h3>
  17. <dl class="order comments">
  18. <?php foreach ($block->getComments() as $_commentItem): ?>
  19. <dt class="comment date"><?= /* @escapeNotVerified */ $block->formatDate($_commentItem->getCreatedAt(), \IntlDateFormatter::MEDIUM, true) ?></dt>
  20. <dd class="comment text"><?= $block->escapeHtml($_commentItem->getComment()) ?></dd>
  21. <?php endforeach; ?>
  22. </dl>
  23. </div>
  24. <?php endif;?>