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/'.$employee->idSchool.'/employees/'.$employee->photo)); ?>" class="rounded-circle">
</a>
</div>
<div class="">
<h4 class="m-t-10"><?php echo e($employee->firstName); ?> <?php echo e($employee->middleName); ?> <?php echo e($employee->lastName); ?></h4>
</div>
<div class="body">
<div class="col-12">
<p class="text-muted">EC No. <?php echo e($employee->enrollmentNo); ?></p>
</div>
<hr>
</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>Full Name : <?php echo e($employee->firstName); ?> <?php echo e($employee->middleName); ?> <?php echo e($employee->lastName); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Enrollment No : <?php echo e($employee->enrollmentNo); ?></strong></small>
<hr>
<small class="text-muted"><strong>DOB : <?php echo e($employee->dob); ?></strong></small>
<hr>
<small class="text-muted"><strong>Gender : <?php echo e($employee->gender); ?></strong></small>
<hr>
<small class="text-muted"><strong>Aadhaar No : <?php echo e($employee->aadhaarNo); ?></strong></small>
<hr>
<small class="text-muted"><strong>Religion : <?php echo e($employee->religion); ?></strong></small>
<hr>
<small class="text-muted"><strong>Caste: <?php echo e($employee->caste); ?></strong> </small>
<hr>
<small class="text-muted"><strong>Blood Group: <?php echo e($employee->bloodGroup); ?></strong> </small>
<hr>
<p class="m-b-0"></p>
</div>
</div>
</div>
</div>
<div class="col-4">
<p style="margin-bottom: 0px;"><strong>Other Details</strong></p>
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Department : <?php echo e($employee->department->departmentName); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Designation : <?php echo e($employee->designation->designationName); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Date Of Joining : <?php echo e($employee->doj); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Date Of Retirement : <?php echo e($employee->dateOfRetirement); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Guardian Name : <?php echo e($employee->guardianName); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Other Information : <?php echo e($employee->otherInfo); ?></strong></small>
<hr>
<small class="text-muted"><strong>Teacher Qualification : <?php echo e($employee->teacherQualification); ?> </strong></small>
<hr>
<?php if($school->idCountry == 2): ?>
<small class="text-muted"><strong>QID : <?php echo e($employee->panNo); ?> </strong></small>
<hr>
<small class="text-muted"><strong>QID Expiry : <?php echo e($employee->qid_expiry); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Passport : <?php echo e($employee->passport); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Passport Issued Country : <?php echo e($employee->passport_issued_country); ?> </strong></small>
<hr>
<small class="text-muted"><strong>Passport Expiry : <?php echo e($employee->passport_expiry); ?> </strong></small>
<hr>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<div class="row clearfix">
<div class="col-4">
<p style="margin-bottom: 0px;"><strong>Emergency Contact Information</strong></p>
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Contact Person : <?php echo e($employee->contactPerson); ?></strong></small>
<hr>
<small class="text-muted"><strong>Relationship with the Child : <?php echo e($employee->contactPersonRelation); ?></strong></small>
<hr>
<small class="text-muted"><strong>Telephone : <?php echo e($employee->contactPersonTel); ?></strong></small>
<hr>
<small class="text-muted"><strong>Mobile : <?php echo e($employee->contactPersonMobile); ?></strong></small>
<hr>
<small class="text-muted"><strong>Address of Contact Person: <?php echo e($employee->contactPersonAddress); ?></strong> </small>
</div>
</div>
</div>
</div>
<div class="col-4">
<p style="margin-bottom: 0px;"><strong>Contact Information:Residential</strong></p>
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Residential Address: <?php echo e($employee->address); ?></strong></small>
<hr>
<small class="text-muted"><strong>City : <?php echo e($employee->city); ?></strong></small>
<hr>
<small class="text-muted"><strong>State : <?php echo e(isset($employee->state->stateName) ? $employee->state->stateName : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>Landmark : <?php echo e($employee->landmark); ?></strong></small>
<hr>
<small class="text-muted"><strong>Pincode : <?php echo e($employee->pincode); ?></strong></small>
<hr>
<small class="text-muted"><strong>Telephone: <?php echo e($employee->elepthone); ?></strong> </small>
<hr>
<p class="m-b-0"></p>
</div>
</div>
</div>
</div>
<div class="col-4">
<p style="margin-bottom: 0px;"><strong>Account Details</strong></p>
<div class="card">
<div class="tab-content">
<div class="tab-pane body active" id="about">
<small class="text-muted"><strong>Bank Name: <?php echo e(isset($employee->bank->bankName) ? $employee->bank->bankName : ''); ?></strong></small>
<hr>
<small class="text-muted"><strong>Account No: <?php echo e($employee->accountNo); ?></strong></small>
<hr>
<small class="text-muted"><strong>IFSC Code: <?php echo e($employee->ifscCode); ?></strong></small>
<hr>
</div>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('schools.school_layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
Copyright © 2021 -