<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-good">
                New purchase order
            </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>Purchase order number</strong></td>
                                                <td><?php echo e($purchaseOrder->id); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Job reference</strong></td>
                                                <td><?php echo e($purchaseOrder->jobId); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Client</strong></td>
                                                <td><?php echo e($purchaseOrder->clientName); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Date of order</strong></td>
                                                <td><?php echo e(date('d/m/Y', strtotime($purchaseOrder->orderDate))); ?></td>
                                            </tr>
                                            </tr>
                                            <tr>
                                                <td><strong>Special instructions</strong></td>
                                                <td><?php echo e($purchaseOrder->note); ?></td>
                                            </tr>
                                            <tr>
                                                <td><strong>Date</strong></td>
                                                <td><?php echo e(date('d/m/Y')); ?></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td class="content-block aligncenter">
                            <a href="<?php echo e($purchaseOrder->pdfUrl); ?>" class="btn btn-good">Purchase Order PDF</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(); ?>