Advertisement
timonte

cart-view

Apr 13th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <h4><i class=" fa fa-shoping-cart"></i>Daftar Belanja</h4>
  2. <hr />
  3. <br />
  4. <?= validation_errors('<p style="color:red">','</p>'); ?>
  5. <table class="bordered responsive-table">
  6. <thead>
  7. <tr>
  8. <td>#</td>
  9. <td>Nama barang</td>
  10. <td>Berat</td>
  11. <td>Jumlah</td>
  12. <td>Harga total</td>
  13. <td width="100px">Opsi</td>
  14.  
  15. </tr>
  16. </thead>
  17. <tbody>
  18. </tbody>
  19. <?php
  20. $i = 1;
  21. foreach($this->cart->contents() as $key) :
  22. ?>
  23. <tr>
  24. <td><?= $i++;?></td>
  25. <td><?= $key['name'];?></td>
  26. <td><?= number_format($key['weight'],0,',','.'). ' gram';?></td>
  27. <td><?= $key['qty'];?></td>
  28. <td style="text-align:right">Rp. <?= number_format($key['price'],0,',','.');?></td>
  29. <td>
  30. <a href="#<?= $key['rowid']; ?>" class="btn-floating orange"><i class="fa fa-edit"></i></a>
  31. <a href="<?= base_url(); ?>cart/delete/<?=$key['rowid']; ?>" class="btn-floating red"><i class="fa fa-trash"></i></a>
  32. </td>
  33.  
  34. </tr>
  35. <div class="modal" id="<?= $key['rowid']; ?>">
  36. <form action="<?= base_url(); ?>cart/update/<?= $key['rowid']; ?>" method="post">
  37. <div class="modal-content">
  38. <div class="input-field">
  39. <input type= "number" name="qty" value="<?= $key['qty'];?>" id="qty<?= $key['qty'];?>">
  40. <label for= "qty<?= $key['qty'];?>">Jumlah Pesanan</label>
  41. </div>
  42. </div>
  43. <div class="modal-footer">
  44. <button type="submit" name="submit" value="Submit" class="modal-action btn blue">Simpan</button>
  45. </div>
  46. </div>
  47. </div>
  48. </form>
  49. </div>
  50. <?php endforeach; ?>
  51. <tr>
  52. <td colspan="4">Total</td>
  53. <td colspan="1" style="text-align:right">Rp. <?= number_format($this->cart->total(),0,',','.'); ?></td>
  54. </tr>
  55. </tbody>
  56. </table>
  57. </br>
  58. <button type="button" class="btn red" onclick="window.history.go(-1)">Kembali</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement