<?php $__env->startSection('content'); ?>
<div class="container-fluid">
    <div class="row">

        <div class="col-md-10 col-md-offset-1">
            <h1>Appointment Letter </h1>
    <ul class='breadcrumb'>
        <li><a href="<?php echo e(URL('admin/dashboard')); ?>">Home</a></li>
        <li>Appointment Letter</li>

    </ul>
<p class="text-right">

</p>

            
                    <?php if(count($errors) > 0): ?>
                        <div class="alert alert-danger">
                            <strong>Whoops!</strong> There were some problems with your input.<br><br>
                            <ul>
                                <?php foreach($errors->all() as $error): ?>
                                    <li><?php echo e($error); ?></li>
                                <?php endforeach; ?>
                            </ul>
                        </div>
                    <?php endif; ?>

                 <?php if(Session::has('message')): ?>
                        <div class="alert alert-success">
                            <strong>  <?php echo e(Session('message')); ?> </strong>
                        </div>
                    <?php endif; ?>


                     
<?php if(count($emps) > 0): ?>
<?php foreach($emps as $emp): ?>  
<div class="panel panel-default">
                <div class="panel-body">
                  
<div class="panel panel-default">
<div class="panel-body">
<!-- statement layout -->
<div class="table-responsive" style="align:center">


<h2 class="text-center text-uppercase">SWOT Techsolutions</h2>
<p class="text-center">New Street <br />Main Road, Chennai</p>

<h3 class="text-center text-uppercase"><strong>APPOINTMENT LETTER</strong></h3>
<br /><br /><br />
<hr />
<br />
<p style="line-height:30px">
<strong>Subject:</strong> Job offer for the position of <?php echo e($emp->post->post); ?> <br /><br /><br />
Respected <?php echo e($emp->name); ?>,
This letter is in regards to the interview that you appeared for the position of <?php echo e($emp->post->post); ?>. We would like to bring to your notice that you have been selected for the particular position and we are pleased to offer the job to you. <br /><br />
We were looking for a candidate who was responsible and hard working and has the ability to take challenges. We found these qualities in you and so decided to give you the job. Your date of joining will be (Date: <?php echo e($emp->doj); ?>). You will have to report to HR Admin who will be the manager of personnel operations. For the first three months you will be undergoing training and you will be on probation for the first six months during which you are not allowed to take any paid leave.  The company will be paying a <strong>monthly salary of $<?php echo e($emp->salary); ?></strong>. <br /><br />

I hope you agree all the terms and conditions and hope to see you on the date of joining.
<br /><br />

Regards,<br />
HR Manager <br />
<strong>SWOT Techsolutions</strong>
</p>

<div class='break'></div>
<br />
 <?php endforeach; ?>
 <?php endif; ?>

        </div>
    </div>
</div>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('Employee/app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>