You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
621 B

  1. <table class="table">
  2. <thead>
  3. <th>배송확정일</th>
  4. <th>주문번호</th>
  5. <th>주문자명</th>
  6. <th>상품명</th>
  7. <th>수량</th>
  8. <th>배송</th>
  9. </thead>
  10. <tbody>
  11. <?php foreach ($list as $od):?>
  12. <tr>
  13. <td><?=date('Y-m-d', strtotime($od['time']))?></td>
  14. <td><a href="<?=base_url('order/view/').$od['idx']?>"><?php echo $od['order_num']?></a></td>
  15. <td><?=$od['order_hu_name']?></td>
  16. <td><?=$od['order_name']?></td>
  17. <td><?=$od['count']?></td>
  18. <td><?=$od['status']?></td>
  19. </tr>
  20. <?php endforeach;?>
  21. </tbody>
  22. </table>