<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-good">
                Invoice uploaded by <?php echo e($quotation->serviceProviderName); ?>

            </td>
        </tr>
        <tr>
            <td class="content-wrap aligncenter">
                INVOICE AND CERTIFICATE PDF ATTACHED
            </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>Reference</strong></td>
                                                <td><?php echo e($quotation->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Date logged</strong></td>
                                                <td><?php echo e(date('d/m/Y H:i', strtotime($quotation->created_at))); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Total Net</strong></td>
                                                <td>£<?php echo e($quotation->quotationTotal); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Contractor</strong></td>
                                                <td><?php echo e($quotation->serviceProviderName); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Submitted by</strong></td>
                                                <td><?php echo e($quotation->creator); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Email</strong></td>
                                                <td><?php echo e($quotation->creatorEmail); ?></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td class="content-block aligncenter">
                            <a href="<?php echo e($invoiceUrl); ?>" class="btn btn-primary">Invoice</a>
                            <a href="<?php echo e($certificateUrl); ?>" class="btn btn-good">Certificate</a>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('emails.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>