Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
details.phtml
Go to the documentation of this file.
1 <?php
7 // @codingStandardsIgnoreFile
12 ?>
13 <div id="details-reload" class="table-wrapper order-items cart">
14  <table id="details-table" class="cart items data table table-paypal-review-items">
15  <caption class="table-caption"><?= $block->escapeHtml(__('Items in Your Shopping Cart')) ?></caption>
16  <thead>
17  <tr>
18  <th class="col name" scope="col"><?= $block->escapeHtml(__('Item')) ?></th>
19  <th class="col price" scope="col"><?= $block->escapeHtml(__('Price')) ?></th>
20  <th class="col qty" scope="col"><?= $block->escapeHtml(__('Qty')) ?></th>
21  <th class="col subtotal" scope="col"><?= $block->escapeHtml(__('Subtotal')) ?></th>
22  </tr>
23  </thead>
24  <?php foreach ($block->getItems() as $item): ?>
25  <?= $block->getItemHtml($item) ?>
26  <?php endforeach ?>
27  <tfoot class="opc-block-summary">
28  <?= $block->getChildHtml('totals') ?>
29  </tfoot>
30  </table>
31 </div>
__()
Definition: __.php:13
$block
Definition: block.php:8
endforeach
Definition: details.phtml:35