<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <?php if($quotation->status == 'APPROVED'): ?>
                <td class="alert alert-good">
                    Your Quotation has been Approved
                </td>
            <?php elseif($quotation->status == 'REJECTED'): ?>
                <td class="alert alert-bad">
                    Your Quotation has been Declined
                </td>
            <?php elseif($quotation->status == 'MORE_INFO'): ?>
                <td class="alert alert-warning">
                    Your Quotation requires More Information
                </td>
            <?php elseif($quotation->status == 'HOLDING_POOL'): ?>
                <td class="alert alert-bad">
                    Your Quotation has been Placed in the Holding Pool
                </td>
            <?php endif; ?>
        </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">
                                            <tr>
                                                <td><b>Quotation Id</b></td>
                                                <td><?php echo e($quotation->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td><b>Quotation Ref</b></td>
                                                <td>Q<?php echo e($quotation->jobId); ?></td>
                                            </tr>
                                            <tr>
                                                <td><b>Work Schedule</b></td>
                                                <td><?php echo e($quotation->workDetail); ?></td>
                                            </tr>
                                            <tr>
                                                <td><b>Quotation Value</b></td>
                                                <td><?php echo e($quotation->quotationTotal); ?></td>
                                            </tr>

                                            <?php if(!empty($reason)): ?>
                                                <tr>
                                                    <td><b>Comments</b></td>
                                                    <td><?php echo nl2br($reason); ?></td>
                                                </tr>
                                            <?php endif; ?>

                                            <?php if(!empty($quotation->reviewDate)): ?>
                                                <tr>
                                                    <td><b>Review date</b></td>
                                                    <td><?php echo e($quotation->reviewDate); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                        </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(); ?>