<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-good">
                Please advise your decision on this Quotation
            </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><strong>Quotation verified by</strong></td>
                                                <td><?php echo e($clientReview['verifiedByName']); ?></td>
                                            </tr>

                                            <tr>
                                                <td><strong>For attention of</strong></td>
                                                <td><?php echo e($clientReview['name']); ?></td>
                                            </tr>

                                            <tr>
                                                <td><strong>Emailed to</strong></td>
                                                <td><?php echo e($clientReview['email']); ?></td>
                                            </tr>

                                            <tr>
                                                <td><strong>Sent date</strong></td>
                                                <td><?php echo e(date('d/m/Y H:i', strtotime($log->created_at))); ?></td>
                                            </tr>

                                            <?php if(!empty($clientReview['note'])): ?>
                                                <tr>
                                                    <td><strong>Note</strong></td>
                                                    <td><?php echo e($clientReview['note']); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td class="content-block aligncenter">
                            <a href="<?php echo e($quotation->reviewUrl); ?>" class="btn btn-good">Review the quotation</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(); ?>