File: D:/HostingSpaces/SBogers85/equichecker.com/storage/framework/views/ce5b0e53db84e8b2917c51f52c03b9e6
<?php $__env->startSection('body'); ?>
<?php echo $__env->make('debtors/searchFormMin', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div class="seperator"></div>
<div class="seperator"></div>
<h3 class="h3-table center"><?php echo app('translator')->get('dale.results'); ?></h3>
<table class="table">
<tr class="tr-head">
<th class="result-type"><?php echo app('translator')->get('dale.type'); ?></th>
<th class="result-name"><?php echo app('translator')->get('dale.name'); ?></th>
<th class="result-city"><?php echo app('translator')->get('dale.city'); ?></th>
<th class="result-country"><?php echo app('translator')->get('dale.country'); ?></th>
<th></th>
<tr/>
<?php foreach($debtors as $debtor): ?>
<tr class="result-array" data-href="<?php echo URL::route('debtors.detail',[urlencode($debtor->hashed_debtors_code)]); ?>">
<td class=" result-type">
<?php if($debtor->debtors_type == 1): ?>
<?php echo app('translator')->get('dale.company'); ?>
<?php elseif($debtor->debtors_type == 2): ?>
<?php echo app('translator')->get('dale.private'); ?>
<?php endif; ?>
</td>
<td class="company-name result-name"><?php echo isset($debtor->company_name) ? $debtor->company_name : $debtor->last_name; ?></td>
<td class="result-city"><?php echo isset($debtor->office_city) ? $debtor->office_city : $debtor->private_city; ?></td>
<td class="result-country">
<?php if($iso = \Komma::getCountryIso($debtor->office_country)): ?>
<?php echo app('translator')->get('countries.'.$iso); ?>
<?php elseif($iso = \Komma::getCountryIso($debtor->private_country)): ?>
<?php echo app('translator')->get('countries.'.$iso); ?>
<?php endif; ?>
</td>
<td class="result-details colorized"><?php echo HTML::linkRoute('debtors.detail',Lang::get('dale.details'),[urlencode($debtor->hashed_debtors_code)]); ?></td>
<tr/>
<?php endforeach; ?>
</table>
<div class="seperator"></div>
<div class="center"><?php echo HTML::linkRoute('customer.logout', Lang::get('dale.log_out')); ?></div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('equichecker.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>