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/SBogers10/vebon.komma.pro/storage/framework/views/87a65f6fcc81941a03560bcf10e18785
<?php /*Available audits*/ ?>
<div class="document-group full-width" ng-controller="auditTableController">
    <div class="archive-group-header">
        <h3><?php echo app('translator')->get('audit.audits_to_be_claimed'); ?></h3>
        <span class="toggle" ng-click="toggleHide($event)" ng-class="hide ? 'hidden' : ''"><button class="btn btn-collapse">
                <span ng-hide="hide"><?php echo app('translator')->get('audit.collapse'); ?> &uarr;</span>
                <span ng-show="hide"><?php echo app('translator')->get('audit.expand'); ?> &darr;</span>
            </button></span>
    </div>

    <table ng-hide="hide">
        <tr>
            <th class="table-organisation"><?php echo app('translator')->get('audit.organisation'); ?></th>
            <th class="table-year"><?php echo app('translator')->get('audit.audit_year'); ?></th>
            <th class="table-city"><?php echo app('translator')->get('global.city'); ?></th>
            <th class="table-updated"><?php echo app('translator')->get('audit.updated'); ?></th>
            <th class="table-contact"><?php echo app('translator')->get('audit.contact'); ?></th>
            <th class="table-action"><?php echo app('translator')->get('audit.action'); ?></th>
        </tr>
        <?php foreach($audits as $audit): ?>
            <tr>
                <td><?php echo e($audit->member->company); ?></td>
                <td><?php echo e($audit->year); ?></td>
                <td><?php echo e($audit->member->city); ?></td>
                <td>
                    <?php if($audit->filed): ?>
                        <?php echo \KommaHelper::localize_date($audit->filed, '%e %B %G', true); ?>

                    <?php else: ?>
                        <span class="not-filled"><?php echo app('translator')->get('audit.notFiled'); ?></span>
                    <?php endif; ?>
                </td>
                <td><?php echo e($audit->member->first_name); ?> <?php echo e($audit->member->name_insertion); ?> <?php echo e($audit->member->last_name); ?></td>
                <td class="action">
                    <div class="button-container"><?php echo HTML::linkRoute('audit.claim', Lang::get('audit.claim'), [$audit->id], ['ng-click'=> 'claimPopup($event)', 'class'=>'admin']); ?></div>
                </td>
            </tr>
        <?php endforeach; ?>

    </table>
</div>