HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/EUmans/umansradepo.be/app/storage/views/9846aa161b563f05e8953fca9499af04
<div class="fact-row">
    <div class="vertical-shadow top"></div>
    <div class="content-container row">
        <ul>
            <?php if( \Config::get('app.radepoActive')): ?>
                <?php foreach(trans('translations.facts') as $fact): ?>
                    <li style="width: <?php echo 100/sizeof(trans('translations.facts')); ?>%;" class="<?php echo $fact['id']; ?>">
                        <a href="<?php echo $fact['url']; ?>">
                            <div class="icon-placeholder"><span></span></div>
                            <p>
                                <?php echo $fact['text']; ?>

                            </p>
                        </a>
                    </li>
                <?php endforeach; ?>
            <?php else: ?>
                <?php foreach(trans('isolation/translations.facts') as $fact): ?>
                    <li style="width: <?php echo 100/sizeof(trans('translations.facts')); ?>%;" class="<?php echo $fact['id']; ?>">
                        <a href="<?php echo $fact['url']; ?>">
                            <div class="icon-placeholder"><span></span></div>
                            <p>
                                <?php echo $fact['text']; ?>

                            </p>
                        </a>
                    </li>
                <?php endforeach; ?>
            <?php endif; ?>

        </ul>
    </div>

</div>