File: D:/HostingSpaces/SBogers10/vebon.komma.pro/storage/framework/views/d65f901d0813fd0f2248da43cd5f26b8
<?php /*Closed audits*/ ?>
<div class="document-group full-width">
<h3><?php echo app('translator')->get('audit.my_archived_audits'); ?></h3>
<table ng-hide="hide">
<tr>
<th class="table-year"><?php echo app('translator')->get('global.year'); ?></th>
<th class="table-auditor"><?php echo app('translator')->get('audit.auditor'); ?></th>
<th class="table-closingdate"><?php echo app('translator')->get('audit.closing_date'); ?></th>
<th class="table-action-archive-member"><?php echo app('translator')->get('audit.action'); ?></th>
</tr>
<?php foreach($audits as $audit): ?>
<tr>
<td><?php echo e($audit->year); ?></td>
<td><?php echo e($audit->auditor->company); ?>
: <?php echo e($audit->auditor->first_name); ?> <?php echo e($audit->auditor->name_insertion); ?> <?php echo e($audit->auditor->last_name); ?></td>
<td ng-controller="dateController">
<?php echo \KommaHelper::localize_date($audit->closing_date, '%e %B %G', true); ?>
</td>
<td class="action">
<?php echo HTML::linkRoute('audit.detail', Lang::get('audit.view'), [$audit->id]); ?>
</td>
</tr>
<?php endforeach; ?>
</table>
</div>