File: D:/HostingSpaces/SBogers85/equichecker.com/storage/framework/views/e01f9dc0607e983468f4cda052814fda
<div class="sub-tabs">
<ul class="nav nav-tabs">
<li class="active"><a href="#search_terms/global"><?php echo app('translator')->get('kms/global.general'); ?></a></li>
<?php foreach($searchTermStats['country'] as $countryIso => $countryNoResults): ?>
<li><a href="#search_terms/<?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" style="display:block">
<div class="entity-attribute entity-attribute-table">
<div class="content left">
<table>
<tr>
<th><?php echo app('translator')->get('kms/stats.search_term'); ?></th>
<th><?php echo app('translator')->get('kms/stats.search_count'); ?></th>
</tr>
<?php foreach($searchTermStats['global'] as $search_term => $stats): ?>
<tr>
<td><?php echo $search_term; ?> </td>
<td><?php echo $stats->count(); ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>
</div>
<?php foreach($searchTermStats['country'] as $countryIso => $countrySearchTermStats): ?>
<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.search_term'); ?></th>
<th><?php echo app('translator')->get('kms/stats.search_count'); ?></th>
</tr>
<?php foreach($countrySearchTermStats as $search_term => $stats): ?>
<tr>
<td><?php echo $search_term; ?> </td>
<td><?php echo $stats->count(); ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>
</div>
<?php endforeach; ?>