?? GreyFile — Mystic File Browser

Current path: home/webdevt/cryptoimpot.fr/module/Application/view/application/rapport/



?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/view/application

?? Viewing: index.phtml

<?php $this->headTitle()->append('Déclaration fiscale'); ?>
<div class="container-fluid">
    <div class="row shadow bg-white p-4" style="margin: 15px 150px;">
        <div class="col">
            <h3>Déclarations fiscales</h3>
    
        <table class="table">
            <tbody>

            <?php foreach ($this->arrayRapportDispo as $infos) : ?>
                <tr>
                    <th scope="row" class="text-center"><span class="badge badge-pill badge-light">Année</span><br><?= $infos['year'] ?></th>
                    <td scope="row" class="text-center"><span class="badge badge-pill badge-light">Nombre de transactions</span><br><?= $infos['countTradeByUserAndYear'] ?></td>
                    <td scope="row" class="text-center"><span class="badge badge-pill badge-light">Nombre d'investissements EUR</span><br><?= $infos['countInvestFiatByUserAndYear'] ?></td>
                    <td scope="row" class="text-center"><span class="badge badge-pill badge-light">Nombre de cessions EUR</span><br><?= $infos['countSessionFiatByUserAndYear'] ?></td>
                    <td><a href="<?php echo $this->url(\Application\Controller\RapportController::ROUTE_APERCU, array('year' => $infos['year'], 'token' => 'azazaa')) ?>" class="btn btn-primary">Télécharger la déclaration</a></td>
                </tr>
<?php endforeach ?>
            </tbody>
        </table>
    </div>
    </div>
</div>


??

??