<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert <?php echo e($uplift->status == 'APPROVED' ? 'alert-good' : 'alert-bad'); ?>">
                <?php echo e($uplift->status == 'APPROVED' ? 'Uplift Approved' : 'Uplift Declined'); ?>

            </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" cellpadding="0" cellspacing="0">
                                            <tr>
                                                <td><strong>Job Ref</strong></td>
                                                <td><?php echo e($job->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Labour Total</strong></td>
                                                <td>£<?php echo e(number_format($uplift['data']['labourTotal'], 2)); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Materials Total</strong></td>
                                                <td>£<?php echo e(number_format($uplift['data']['materialsTotal'], 2)); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Plant Total</strong></td>
                                                <td>£<?php echo e(number_format($uplift['data']['plantTotal'], 2)); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Other Total</strong></td>
                                                <td>£<?php echo e(number_format($uplift['data']['otherTotal'], 2)); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Comments</strong></td>
                                                <td><?php echo e($uplift['data']['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(); ?>