IMMREX7
<?php $__env->startSection('content'); ?>
<div class="row clearfix">
<div class="col-sm-12">
<div class="card member-card" style="margin-bottom:10px;">
<div class="member-img">
<a href="#" class="">
<img src="<?php echo e(asset('storage/schools/'.$teacher->idSchool.'/employees/'.$teacher->photo)); ?>" class="rounded-circle">
</a>
</div>
<div class="">
<h5 class="m-t-10" style="margin: 0px;"><?php echo e($teacher->firstName); ?> <?php echo e($teacher->lastName); ?></h5>
</div>
<div class="body" style="margin: 0px;">
<div class="col-12">
<p>EC No. <?php echo e($teacher->enrollmentNo); ?></p>
</div>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-4">
<p style="margin-bottom: 0px;"><strong>Basic Information</strong></p>
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Contact No : <?php echo e($teacher->mobile); ?></strong></small>
<hr>
<small class="text-muted"><strong>Email : <?php echo e($teacher->email); ?></strong></small>
<hr>
<small class="text-muted"><strong>Address : <?php echo e($teacher->address); ?></strong></small>
<hr>
<small class="text-muted"><strong>Date Of Joining : <?php echo e($teacher->doj); ?></strong></small>
<hr>
</div>
</div>
</div>
</div>
<div class="col-8">
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Basic Salary : <?php echo e(isset($salstr->basicSalary) ? $salstr->basicSalary : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>VDA : <?php echo e(isset($salstr->vda) ? $salstr->vda : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>HRA : <?php echo e(isset($salstr->hra) ? $salstr->hra : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>CONV : <?php echo e(isset($salstr->conv) ? $salstr->conv : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>EPF ACCOUNT : <?php echo e(isset($salstr->epf_accountno) ? $salstr->epf_accountno : ''); ?></strong></small> <small class="text-muted"><strong>EPF(%) : <?php echo e(isset($salstr->epf) ? $salstr->epf : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>ESI ACCOUNT : <?php echo e(isset($salstr->esi_accountno) ? $salstr->esi_accountno : ''); ?></strong></small> <small class="text-muted"><strong>ESI(%) : <?php echo e(isset($salstr->esi) ? $salstr->esi : ''); ?></strong></small>
<hr>
<p style="margin-bottom: 0px;"><strong>Payment History</strong></p>
<table class="table table-bordered">
<thead>
<tr>
<th>Month</th>
<th>Advance</th>
<th>Deduction</th>
<th>Deduction Remarks</th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $payment_history; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $v): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($v->month->monthName); ?></td>
<td><?php echo e($v->advance); ?></td>
<td><?php echo e($v->deduction); ?></td>
<td><?php echo e($v->deductionRemarks); ?></td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('teachers.teacher_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Copyright © 2021 -