File: /storage/v6964/avoxlive/public_html/application/views/backend/admin/appointment_list.php
<div class="row">
<div class="col-sm-12">
<div class="panel panel-info">
<!-- <div class="panel-heading"> <i class="fa fa-list"></i> <?php echo get_phrase('Appointment Schedule List');?>
</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>#</th>
<th>Visitor Name</th>
<th>Exhibitor Name</th>
<th>Start_date</th>
<th>Start-Time End_Time</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr><?php $no = 1; $get_calendar_from_model = $this->crud_model->list_all_appointment_list_model_and_order_with_id(); foreach ($get_calendar_from_model as $key => $calendar):?>
<td><?php echo $no++ ; ?></td>
<td><?php echo $calendar['visitor_name'];?></td>
<td><?php echo $calendar['exhibitor_name'];?></td>
<td><?php $wop = $calendar['start_date']; print date("Y-m-d", strtotime($wop))?></td>
<td><?php $wop = $calendar['start_date']; print date("h:i a", strtotime($wop))?> - <?php $wop = $calendar['end_time']; print date("h:i a", strtotime($wop))?></td>
<td><?php echo $calendar['status'];?></td>
</tr>
<?php endforeach;
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>