관리-도구
편집 파일: 658457e08cfca97e85131c58f77c65761cb71ec9.php
<?php $content = content('affiliate.content'); $invest = \App\Models\Refferal::where('type', 'invest')->first(); $commision = \App\Models\Refferal::where('type', 'interest')->first(); ?> <div class="row gy-4"> <div class="col-lg-6 pe-xl-4"> <h4 class="mb-4 text-center"><?php echo e(__('Invest Referral')); ?></h4> <div class="referral-wrapper"> <?php for($i = 0; $i < count($invest->level ?? []); $i++): ?> <div class="referral-box"> <span class="referral-box-icon"> <i class="bi bi-trophy-fill"></i> </span> <div class="referral-box-content d-flex flex-wrap align-items-center justify-content-between"> <div> <p class="referral-box-title mb-0 text-dark fw-semibold"><?php echo e(__('Level')); ?> <?php echo e($i + 1); ?></p> <span><?php echo e(__('Commission')); ?></span> </div> <h3 class="referral-box-percentage mb-0"><?php echo e($invest->commision[$i] . '%'); ?></h3> </div> </div> <?php endfor; ?> </div> </div> <div class="col-lg-6 ps-xl-4"> <h4 class="mb-4 text-center"><?php echo e(__('Commission Referral')); ?></h4> <div class="referral-wrapper"> <?php for($i = 0; $i < count($commision->level ?? []); $i++): ?> <div class="referral-box"> <span class="referral-box-icon"> <i class="bi bi-trophy-fill"></i> </span> <div class="referral-box-content d-flex flex-wrap align-items-center justify-content-between"> <div> <p class="referral-box-title mb-0 text-dark fw-semibold"><?php echo e(__('Level')); ?> <?php echo e($i + 1); ?></p> <span><?php echo e(__('Commission')); ?></span> </div> <h3 class="referral-box-percentage"><?php echo e($commision->commision[$i] . '%'); ?></h3> </div> </div> <?php endfor; ?> </div> </div> </div> <?php /**PATH /home/inprosysltd/public_html/cityscape.inprosysltd.com/core/resources/views/backend/frontend/not_editable/affiliate.blade.php ENDPATH**/ ?>