<div id="cards" class="row mb-4 mt-2">
    
    <div class="col-3">
        <?php echo $__env->make('home.GHT.charts.commons.card-projets-cibles', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </div>
    
    <div class="col-3">
        <?php echo $__env->make('home.GHT.charts.commons.card-projets-notifies', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    </div>
    
    <div class="col-3">
        <div class="card h-100 bg-primary">
            <div class="card-body">
                <h4 class="card-title text-center text-white font-weight-bold">Taux de transformation</h4>
                <h2 class="card-text text-center text-white">
                    <?php if($gains_cible > 0): ?>
                        <?php echo e(round($gains_notifie / $gains_cible, 2)); ?>%
                    <?php else: ?>
                        -
                    <?php endif; ?>
                </h2>
            </div>
        </div>
    </div>
    
    <div class="col-3">
        <div class="card h-100 bg-primary">
            <div class="card-body">
                <h4 class="card-title text-center text-white font-weight-bold">Projets : <?php echo e($champ_referentiel); ?></h4>
                <h2 class="card-subtitle text-white text-center"><?php echo e($referentiel); ?></h2>
            </div>
        </div>
    </div>
</div>
<?php /**PATH /var/www/html/resources/views/home/GHT/charts/performance-economique/projets-cibles-notifies.blade.php ENDPATH**/ ?>