<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-warning">
                New note created by <?php echo e($user->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><strong><?php echo e(!empty($typeObj->jobType) ? $typeObj->jobType : ''); ?> <?php echo e($typeName); ?></strong></td>
                                                <?php if(!empty($typeObj->jobType)): ?>
                                                    <td><a href="<?php echo e(config('params')['aims']['jobsUrl'].$typeObj->id); ?>"><?php echo e($typeObj->id); ?></a></td>
                                                <?php else: ?>
                                                    <td><?php echo e($typeObj->id); ?></td>
                                                <?php endif; ?>
                                            </tr>

                                            <?php if(!empty($note->spokeTo)): ?>
                                                <tr>
                                                    <td><strong>Spoke to</strong></td>
                                                    <td><?php echo e($note->spokeTo); ?></td>
                                                </tr>
                                            <?php endif; ?>

                                            <?php if(!empty($note->category)): ?>
                                                <tr>
                                                    <td><strong>Category</strong></td>
                                                    <td><?php echo e(ucwords($note->category)); ?></td>
                                                </tr>
                                            <?php endif; ?>

                                            <tr>
                                                <td><strong>Urgency</strong></td>
                                                <td><?php echo e(ucwords($note->urgency)); ?></td>
                                            </tr>

                                            <tr>
                                                <td><strong>Note</strong></td>
                                                <td><?php echo e($note->note); ?></td>
                                            </tr>

                                            <?php if(!empty($note->email)): ?>
                                                <tr>
                                                    <td><strong>Sent to</strong></td>
                                                    <td><?php echo e($note->email); ?></td>
                                                </tr>
                                            <?php endif; ?>
                                        </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(); ?>