<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-good">
                Application submitted
            </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><b>Application No</b></td>
                                                <td><?php echo e($quotation->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td><b>Application Date</b></td>
                                                <td><?php echo e(date('d/m/Y H:i', strtotime($quotation->created_at))); ?></td>
                                            </tr>
                                            <tr>
                                                <td><b>Application Value</b></td>
                                                <td><?php echo e(number_format($quotation->quotationTotal, 2)); ?></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                                <tr>
                                    <td class="content-block aligncenter">
                                        <a href="<?php echo e($quotation->applicationPdf); ?>" class="btn btn-good">Application PDF</a>
                                    </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(); ?>