<?php if (!empty($meja_list)) { $no = 1; foreach ($meja_list as $meja) { ?> <tr> <td><?php echo $no; ?> </td> <td><?php echo $meja->no_meja; ?> </td> <td style="text-align: center;"><?php echo general::status($meja->status); ?> </td> <td style="text-align: center;"><a href="<?php echo site_url('page=meja&act=meja_reset&id=' . $this->encrypt->encode_url($meja->id)); ?> " onclick="return confirm('Reset Meja ?')"><i class="fa fa-recycle"></i> Kosongkan</a></td> <td style="text-align: center;"><a href="<?php echo site_url('page=meja&act=meja_hapus&id=' . $this->encrypt->encode_url($meja->id)); ?> " onclick="return confirm('Hapus Meja ?')"><i class="fa fa-remove"></i> Hapus</a></td> </tr> <?php $no++; } }