File: /storage/v6964/avoxlive/public_html/application/views/backend/parent/subject.php
<div class="row">
<div class="col-sm-12">
<div class="panel panel-info">
<div class="panel-heading"> <i class="fa fa-plus"></i> <?php echo get_phrase('add_subject');?></div>
<div class="panel-body table-responsive">
<table id="example23" class="table display">
<thead>
<tr>
<th><div>#</div></th>
<th><div><?php echo get_phrase('class_name');?></div></th>
<th><div><?php echo get_phrase('subject_name');?></div></th>
<th><div><?php echo get_phrase('teacher');?></div></th>
</tr>
</thead>
<tbody>
<?php $counter = 1;
foreach($select_subject as $key => $subjects):?>
<tr>
<td><?php echo $counter++;?></td>
<td><?php echo $this->crud_model->get_type_name_by_id('class', $subjects['class_id']);?></td>
<td><?php echo $subjects['name'];?></td>
<td><?php echo $this->crud_model->get_type_name_by_id('teacher', $subjects['teacher_id']);?></td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>