<div class="content-wrapper"> <div class="content"> <div class="container-fluid"> <div class="row"> <div class="col"> <div class="card card-primary card-outline"> <div class="card-header"> <h5 class="m-0"><?php echo $pageTitle; ?></h5> </div> <div class="card-body"> <table class="table table-bordered table-striped dataTable"> <thead> <tr> <th>Product Code</th> <th>Product Name</th> <th>Description</th> <th>Quantity</th> <th>Unit Price</th> </tr> </thead> <tbody> <?php foreach ($products as $product) : ?> <tr> <td><?php echo $product->product_code; ?></td> <td><?php echo $product->product_name; ?></td> <td><?php echo $product->description; ?></td> <td><?php echo $product->quantity; ?></td> <td><?php echo $product->unit_price; ?></td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div>