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/fd43404b8cfa2240af9a0c57dc4d3130
<?php $__env->startSection('body'); ?>

    <div class="light-text-containter">
        <div id="light"">
            <span id="red" class="<?php echo (strcasecmp($debtor->debt_status, 'R') == 0 ?'active': ''); ?>"></span>
            <span id="orange" class="<?php echo (strcasecmp($debtor->debt_status, 'O') == 0 ?'active': ''); ?>"></span>
            <span id="green" class="<?php echo (strcasecmp($debtor->debt_status, 'G') == 0 ?'active': ''); ?>"></span>
        </div>
        <div class="light-text">
            <?php echo app('translator')->get('dale.credit_status_'.$debtor->debt_status); ?>
        </div>
    </div>

    <h3 class="h3-table center
    <?php echo (strcasecmp($debtor->debt_status, 'O') == 0 ?'orange': ''); ?>

    <?php echo (strcasecmp($debtor->debt_status, 'R') == 0 ?'red': ''); ?>

    <?php echo (strcasecmp($debtor->debt_status, 'G') == 0 ?'green': ''); ?>

            "><?php echo app('translator')->get('dale.detail_title'); ?></h3>

    <div class="sub-title">
        <div class="row">
            <div class="col-sm-8 col-md-8 big">
            <?php if(isset($debtor->company_name) && $debtor->company_name != '' && $debtor->company_name != null): ?>
                <?php echo e($debtor->company_name); ?>

            <?php elseif(isset($debtor->initials) && isset($debtor->last_name) && isset($debtor->private_city)): ?>
                    <?php echo e($debtor->initials.' '.$debtor->last_name); ?> 
            <?php endif; ?>
            </div>
            <div class="col-sm-4 col-md-4 credit">

            </div>
        </div>
    </div>

    <div class="company-detail">

        <div class="row">
            <div class="col-md-12">

            </div>
        </div>

        <div class="row">
            <div class="col-sm-4 col-md-5">
                <div class="contact">
                    <?php if($debtor->debtors_type == 1): ?>
                        <h4><?php echo app('translator')->get('dale.company_address'); ?></h4>
                        <p><?php echo e($debtor->office_street); ?> <?php echo e($debtor->office_nr); ?></p>
                        <p><?php echo e($debtor->office_postal); ?> <?php echo e($debtor->office_city); ?></p>
                    <?php else: ?>
                        <h4><?php echo app('translator')->get('dale.private_address'); ?></h4>
                        <p><?php echo e($debtor->private_street); ?> <?php echo e($debtor->private_nr); ?></p>
                        <p><?php echo e($debtor->private_postal); ?> <?php echo e($debtor->private_city); ?></p>
                    <?php endif; ?>

                    <div class="seperator"></div>

                    <h4><?php echo app('translator')->get('dale.post_address'); ?></h4>
                    <p><?php echo e($debtor->post_street); ?> <?php echo e($debtor->post_nr); ?></p>
                    <p><?php echo e($debtor->post_postal); ?> <?php echo e($debtor->post_city); ?></p>
                </div>
            </div>

            <div class="col-sm-8 col-md-7">
                <div class="advice">
                    <h4><?php echo app('translator')->get('dale.advice'); ?></h4>
                    <p><?php echo app('translator')->get('dale.more_info'); ?></p>

                    <div class="seperator"></div>

                    <?php if($debtor->remarks != ''): ?>
                        <h4><?php echo app('translator')->get('dale.remarks'); ?></h4>
                        <p><?php echo e($debtor->remarks); ?></p>
                    <?php endif; ?>
                </div>
            </div>

        </div>

    </div>

    <div class="seperator"></div>
    <div class="center">
        <?php echo HTML::linkRoute('debtors.results', \Lang::get('dale.go_back')); ?>

    </div>
    <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(); ?>