Viewing file: 78add9147dc84d73f61aab65f2d0f870c4253ee9.php (4.9 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title', 'Home School Name'); ?>
<?php $__env->startSection('css'); ?>
<style>
.details_right {
background: #486b4c !important;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<?php
$bannerSliderSection = json_decode(get_settings('banner_slider_section'));
$head_teacher_message_section = json_decode(get_settings('head_teacher_message_sec'));
$about_school_sec = json_decode(get_settings('about_school_sec'));
?>
<div class="leftCon">
<h2>শিক্ষক</h2>
<?php
$info = json_decode($teacher->user_information);
if(isset($info->photo) && !empty($info->photo)){
$user_image = 'uploads/user-images/'.$info->photo;
}else{
$user_image = 'uploads/user-images/thumbnail.png';
}
?>
<div class="details">
<div class="details_left">
<img src="<?php echo e(asset($user_image)); ?>" title="<?php echo e($teacher->name); ?>"
alt=""></div><!-- End of details_left-->
<div class="details_right">
<img src="/images/teachers/details_right_img_left.png" alt="<?php echo e($teacher->name); ?>"
class="details_right_img_left">
<h2><?php echo e($teacher->name); ?></h2>
<address>
পদবী: <?php echo e(ucwords(str_replace('_', ' ', $teacher->designation))); ?><br>
পিতার নাম : <?php echo e($teacher->name); ?><br>
শিক্ষাগত যোগ্যতা : <?php echo e(isset($info->educational_qualification)?$info->educational_qualification:''); ?><br>
ট্রেনিং : <?php echo e(isset($info->training)?$info->training:''); ?><br>
ইমেইল : <?php echo e($teacher->name); ?><br>
রক্তের গ্রুপ : <?php echo e(isset($info->blood_group)?ucwords($info->blood_group):''); ?> <br>
জাতীয়তা : BANGLADESHI<br>
জাতীয় পরিচয় নং : <?php echo e(isset($info->nid_no)?$info->nid_no:''); ?><br>
ফোন : <?php echo e(isset($info->phone)?$info->phone:''); ?><br>
ঠিকানা : <?php echo e(isset($info->address)?$info->address:''); ?><br>
জন্মতারিখ : <?php echo e(isset($info->birthday)?date('m/d/Y',$info->birthday):''); ?><br>
যোগদানের তারিখ : <?php echo e(isset($info->birthday)?date('m/d/Y',$info->join_date):''); ?><br>
প্রথম যোগদান : <?php echo e(isset($info->phone)?$info->phone:''); ?><br>
</address>
</div><!-- End of details_right-->
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('js'); ?>
<script type="text/javascript">
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer",
{
title: {
text: "Student Attendence",
fontFamily: "arial black"
},
animationEnabled: true,
legend: {
verticalAlign: "bottom",
horizontalAlign: "center"
},
theme: "theme1",
data: [
{
type: "pie",
indexLabelFontFamily: "Garamond",
indexLabelFontSize: 20,
indexLabelFontWeight: "bold",
startAngle: 0,
indexLabelFontColor: "MistyRose",
indexLabelLineColor: "darkgrey",
indexLabelPlacement: "inside",
toolTipContent: "{name}: {y}",
showInLegend: true,
indexLabel: "#percent%",
dataPoints: [
{y: 0, name: "Total Present", legendMarkerType: "triangle"},
{y: 1518, name: "Total Absent", legendMarkerType: "square"}
]
}
]
});
chart.render();
}
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.index', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/anandabazargirlsschool/public_html/resources/views/frontend/teacher_info.blade.php ENDPATH**/ ?>
|