<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-good">
                New quotation submitted by <?php echo e($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">
                                            <tr>
                                                <td width=""><b>Quotation Id</b></td>
                                                <td width=""><?php echo e($quotation->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td width=""><b>Quotation Ref</b></td>
                                                <td width="">Q<?php echo e($quotation->jobId); ?></td>
                                            </tr>
                                            <tr>
                                                <td width=""><b>Work Schedule</b></td>
                                                <td width=""><?php echo e($quotation->workDetail); ?></td>
                                            </tr>
                                            <tr>
                                                <td width=""><b>Quotation Value</b></td>
                                                <td width=""><?php echo e($quotation->quotationTotal); ?></td>
                                            </tr>
                                            <tr>
                                                <td width=""><b>Date</b></td>
                                                <td width=""><?php echo e(date('d/m/Y H:i')); ?></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(); ?>