File: /storage/v6964/school/public_html/school/application/views/backend/librarian/book_category.php
<div class="row">
<div class="col-sm-5">
<div class="panel panel-info">
<div class="panel-heading"> <i class="fa fa-plus"></i> <?php echo get_phrase('add_book_category'); ?></div>
<?php echo form_open(base_url() . 'librarian/book_category/create', array('class' => 'form-horizontal form-goups-bordered validate'));?>
<div class="panel-body table-responsive">
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('book_category_name');?></label>
<div class="col-sm-12">
<input name="name" type="text" class="form-control"/ required>
</div>
</div>
<div class="form-group">
<label class="col-md-12" for="example-text"><?php echo get_phrase('description');?></label>
<div class="col-sm-12">
<textarea rows="3" class="form-control" name="description" required></textarea>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-block btn-info btn-rounded btn-sm "><i class="fa fa-plus"></i> <?php echo get_phrase('add');?></button>
</div>
<?php echo form_close();?>
</div>
</div>
</div>
<!----CREATION FORM ENDS-->
<div class="col-sm-7">
<div class="panel panel-info">
<div class="panel-heading"> <i class="fa fa-list"></i> <?php echo get_phrase('list_book_category'); ?></div>
<div class="panel-wrapper collapse in" aria-expanded="true">
<div class="panel-body table-responsive">
<table id="example23" class="display nowrap" cellspacing="0" width="100%">
<thead>
<tr>
<th><div>#</div></th>
<th><div><?php echo get_phrase('name');?></div></th>
<th><div><?php echo get_phrase('description');?></div></th>
<th><div><?php echo get_phrase('options');?></div></th>
</tr>
</thead>
<tbody>
<?php $count = 1;
$select_book_category = $this->db->get('book_category')->result_array();
foreach ($select_book_category as $key => $book_category): ?>
<tr>
<td><?php echo $count++;?></td>
<td><?php echo $book_category ['name'];?></td>
<td><?php echo $book_category ['description'];?></td>
<td>
<a onclick="showAjaxModal('<?php echo base_url();?>modal/popup/edit_book_category/<?php echo $book_category['book_category_id'];?>')" class="btn btn-info btn-circle btn-xs"><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url();?>librarian/book_category/delete/<?php echo $book_category['book_category_id'];?>" onclick="return confirm('Are you sure want to delete?');" class="btn btn-danger btn-circle btn-xs" style="color:white"><i class="fa fa-times"></i></a>
</td>
</tr>
<?php endforeach;?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<!----TABLE LISTING ENDS--->