<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-warning">
                Job uplift requested <?php echo e(!empty($serviceProvider) ? ' by ' . $serviceProvider->name : ''); ?>

            </td>
        </tr>
        <?php /*<tr>
            <td class="content-wrap aligncenter">
                PLEASE DO NOT REPLY TO THIS EMAIL AS IT IS NOT MONITORED
            </td>
        </tr>*/ ?>
        <tr>
            <td class="content-wrap">
                <table width="100%" cellpadding="0" cellspacing="0">
                    <tr>
                        <td class="content-block aligncenter">
                            <table class="data">
                                <tr>
                                    <td>
                                        <table class="data-items" width="100%" cellpadding="0" cellspacing="0">
                                            <?php if(!empty($client)): ?>
                                                <tr>
                                                    <td><strong>Client</strong></td>
                                                    <td><?php echo e($client->name); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                            <?php if(!empty($building)): ?>
                                                <tr>
                                                    <td><strong>Building</strong></td>
                                                    <td><?php echo e($building->name); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                            <?php if(!empty($serviceProvider)): ?>
                                                <tr>
                                                    <td><strong>Contractor</strong></td>
                                                    <td><?php echo e($serviceProvider->name); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                            <tr>
                                                <td><strong>Job Ref</strong></td>
                                                <td>
                                                    <a href="<?php echo e(config('params')['aims']['jobsUrl'].$job->id); ?>"><?php echo e($job->id); ?></a>
                                                </td>
                                            </tr>
                                            <tr>
                                                <td><strong>Labour Total</strong></td>
                                                <td><?php echo e($newUplift['labourTotal']); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Materials Total</strong></td>
                                                <td><?php echo e($newUplift['materialsTotal']); ?></td>
                                            </tr>
                                            <?php if(!empty($newUplift['items'])): ?>
                                                <tr>
                                                    <td><strong>Items</strong></td>
                                                    <td><?php echo e($newUplift['items']); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                            <tr>
                                                <td><strong>Plant Total</strong></td>
                                                <td><?php echo e($newUplift['plantTotal']); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Other Total</strong></td>
                                                <td><?php echo e($newUplift['otherTotal']); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Total</strong></td>
                                                <td><?php echo e($newUplift['total']); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Comments</strong></td>
                                                <td><?php echo e($newUplift['comments']); ?></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('emails.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>