?
Current Path : /home1/savoy/public_html/savoyglobal.net/sec/application/views/home/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/sec/application/views/home/inventory_alert.php |
<!-- BEGIN EXAMPLE TABLE PORTLET--> <div class="portlet box blue"> <div class="portlet-title"> <div class="caption"><i class="icon-cogs"></i>Inventory Alert</div> </div> <div class="portlet-body"> <table class="table table-striped table-hover table-bordered" > <tr> <th>Sl No</th> <th>Inventory Name</th> <th>Stock</th> </tr> <?php if (isset($inventory_alert['result']) && count($inventory_alert['result']) > 1) { $i = 1; foreach ($inventory_alert['result'] as $value) { ?> <tr> <td><?= $i++ ?></td> <td><?= $value['inventory_type'] ?></td> <td> <?= $this->inventorymodel->get_stock($value['inventory_id']) ?> </td> </tr> <?php } } ?> </table> </div> </div>