25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
705 B

  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. ?>
  7. <?php if (count($block->getTotals()) > 0) : ?>
  8. <?php foreach ($block->getTotals() as $_total) : ?>
  9. <div class="dashboard-item dashboard-item-primary">
  10. <div class="dashboard-item-title"><?= $block->escapeHtml($_total['label']) ?></div>
  11. <div class="dashboard-item-content">
  12. <strong class="dashboard-sales-value">
  13. <?= /* @noEscape */ $_total['value'] ?>
  14. <span class="dashboard-sales-decimals"><?= /* @noEscape */ $_total['decimals'] ?></span>
  15. </strong>
  16. </div>
  17. </div>
  18. <?php endforeach; ?>
  19. <?php endif; ?>