| Current Path : /home/rtorresani/www/vendor/magento/module-vault/view/frontend/templates/ |
| Current File : //home/rtorresani/www/vendor/magento/module-vault/view/frontend/templates/token_list.phtml |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
/** @var \Magento\Vault\Block\Customer\AccountTokens $block */
$tokens = $block->getPaymentTokens();
?>
<?php if (count($tokens) !== 0) : ?>
<div class="table-wrapper my-credit-cards">
<table class="data table table-credit-cards" id="token-list-table">
<thead>
<tr>
<th scope="col" class="col"><?= $block->escapeHtml(__('PayPal Account')) ?></th>
<th scope="col" class="col actions"> </th>
</tr>
</thead>
<tbody>
<?php foreach ($tokens as $token) : ?>
<?= /* @noEscape */ $block->renderTokenHtml($token) ?>
<?php endforeach; ?>
</tbody>
</table>
</div>
<?php endif; ?>