<div class="panel panel-default">
    <div class="panel-heading"><?= $this->translate('DonateHistory') ?> <small><?= $this->translate('last') ?> 10</small></div>
    <div class="panel-body">
        <div class="table-responsive">
            <table class="table table-striped table-bordered table-hover table-condensed">
                <tr>
                    <th>#</th>
                    <th><?= $this->translate('Type') ?></th>
                    <th><?= $this->translate('TransactionId') ?></th>
                    <th><?= $this->translate('Success') ?></th>
                    <th><?= $this->translate('Coins') ?></th>
                    <th><?= $this->translate('Created') ?></th>
                </tr>
                <?php /** @var \PServerCore\Entity\DonateLog $donate */ ?>
                <?php foreach ($this->donateHistoryList as $key => $donate) : ?>
                <tr>
                    <td><?= $key + 1 ?></td>
                    <td><?= $this->escapeHtml($donate->getType()) ?></td>
                    <td><?= $this->escapeHtml($donate->getTransactionId()) ?></td>
                    <td><?= $donate->getSuccess() ?></td>
                    <td><?= $this->escapeHtml($donate->getCoins()) ?></td>
                    <td><?= $this->dateTimeFormatTime($donate->getCreated()) ?></td>
                </tr>
                <?php endforeach; ?>
            </table>
        </div>
    </div>
</div>