<div class="col-12">
    <div class="card">
        <div class="card-body">
            <h5 class="card-title text-center font-weight-bold">Top <?php echo e(sizeof($top5famille) == 0 ? 5 : sizeof($top5famille)); ?> des domaines d'achat</h5>
            <?php if(sizeof($top5famille) > 0): ?>
                <table class="table table-striped table-bordered">
                    <thead>
                    <th>Domaine d'achat</th>
                    <th>Montants notifiés</th>
                    <th>Gains notifiés</th>
                    </thead>
                    <tbody>
                    <?php $__currentLoopData = $top5famille; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $t5f): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                        <tr>
                            <td><?php echo e($t5f->nom); ?></td>
                            <td><span class="autonumeric"><?php echo e($t5f->total_montant_notifie); ?></span></td>
                            <td><span class="autonumeric"><?php echo e($t5f->total_gains_notifie); ?></span></td>
                        </tr>
                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                    </tbody>
                </table>
            <?php else: ?>
                <p class="card-text">Pas de données disponible.</p>
            <?php endif; ?>
        </div>
    </div>
</div>
<?php /**PATH /var/www/html/resources/views/home/GHT/charts/performance-economique/montants-gains-notifies-familles.blade.php ENDPATH**/ ?>