<div class="col-12">
    <div class="card">
        <div class="card-body">
            <h5 class="card-title text-center font-weight-bold">Top {{ sizeof($top5famille) == 0 ? 5 : sizeof($top5famille) }} des domaines d'achat</h5>
            @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>
                    @foreach($top5famille as $t5f)
                        <tr>
                            <td>{{ $t5f->nom }}</td>
                            <td><span class="autonumeric">{{ $t5f->total_montant_notifie }}</span></td>
                            <td><span class="autonumeric">{{ $t5f->total_gains_notifie }}</span></td>
                        </tr>
                    @endforeach
                    </tbody>
                </table>
            @else
                <p class="card-text">Pas de données disponible.</p>
            @endif
        </div>
    </div>
</div>
