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/SBogers85/equichecker.com/storage/framework/views/465a5cc2f22cd1b7c30d80e04158c01c
<div class="sub-tabs">
    <ul class="nav nav-tabs">
        <li class="active"><a href="#detail_pages/global"><?php echo app('translator')->get('kms/global.general'); ?></a></li>
        <?php foreach($detailPageStats['country'] as $countryIso => $countryDetailPageStats): ?>
            <li><a href="#detail_pages/<?php echo $countryIso; ?>"><?php echo app('translator')->get('countries.'.$countryIso ); ?></a></li>
        <?php endforeach; ?>
    </ul>
</div>
<div id="sub-tab-content-global" class="sub-tab-content">
    <div class="entity-attribute entity-attribute-table">
        <div class="content left">
            <table>
                <tr>
                    <th><?php echo app('translator')->get('kms/stats.detail_page'); ?></th>
                    <th><?php echo app('translator')->get('kms/stats.search_count'); ?></th>
                </tr>
                <?php foreach($detailPageStats['global'] as $debtor_id => $stats): ?>

                    <?php if($stats->count() != 0 && $stats->first()->debtor != null): ?>
                        <tr>
                            <td><?php echo $stats->first()->debtor->debtors_code; ?>

                                : <?php echo isset($stats->first()->debtor->company_name) ? $stats->first()->debtor->company_name : $stats->first()->debtor->last_name; ?> </td>
                            <td><?php echo $stats->count(); ?></td>
                        </tr>
                    <?php endif; ?>
                <?php endforeach; ?>
            </table>
        </div>
    </div>
</div>
<?php foreach($detailPageStats['country'] as $countryIso => $countryDetailPageStats): ?>
    <div id="sub-tab-content-<?php echo $countryIso; ?>" class="sub-tab-content">
        <div class="entity-attribute entity-attribute-table">
            <div class="content left">
                <table>
                    <tr>
                        <th><?php echo app('translator')->get('kms/stats.detail_page'); ?></th>
                        <th><?php echo app('translator')->get('kms/stats.search_count'); ?></th>
                    </tr>
                    <?php foreach($countryDetailPageStats as $debtor_id => $stats): ?>
                        <?php if($stats->count() != 0 && $stats->first()->debtor != null): ?>
                            <tr>
                                <td><?php echo $stats->first()->debtor->debtors_code; ?>

                                    : <?php echo isset($stats->first()->debtor->company_name) ? $stats->first()->debtor->company_name : $stats->first()->debtor->last_name; ?> </td>
                                <td><?php echo $stats->count(); ?></td>
                            </tr>
                        <?php endif; ?>
                    <?php endforeach; ?>
                </table>
            </div>
        </div>
    </div>
<?php endforeach; ?>