EVOLUTION-NINJA
Edit File: item_description.php
<?php $this->load->view('includes/client_header');?> <section class="mid_work_one"> <div class="container-fluid"> <div class="row"> <div class="row" style="padding-left:30px;padding-right:30px;"> <h4 style="float:left;font-weight: bold;color: #346faa;margin-bottom:0px;">Company : <span style="color:#000000;"><?php echo $bidding->company_name; ?></span></h4> <!-- <button type="button" style="float:right;margin-left: 15px;" class="btn btn-primary btn-sm" data-toggle="modal" data-target="#myModalnew">Enter Bidding Room</button> --> <a href="<?php echo base_url('/client-event');?>/<?php echo $bidding->bidding_session_id; ?>" role="button" style="float:right;margin-left: 15px;" class="btn btn-primary btn-sm" >Enter Bidding Room</a> </div> <h4 class="info_text" style="padding-left:15px;padding-right:15px;">Event Name : <span style="color:#000000;"><?php echo $bidding->bidding_title; ?></span></h4> <div class="col-sm-8"> <table class="table prio_table"> <thead> <tr> <th>#</th> <th>Item Description</th> <th>Specification</th> <th>Quantity</th> </tr> </thead> <tbody> <?php foreach($item as $key => $value) { ?> <tr> <td><?php echo $key+1; ?>.</td> <td><?php echo $value->item_name; ?></td> <td><?php echo $value->specification; ?></td> <td><?php echo $value->quantity; ?></td> </tr> <?php } ?> </tbody> </table> </div> <div class="col-sm-4"> <h4 style="background:#182155;color:#fff;text-align:center;padding:8px 0px;border-top-left-radius:5px;border-top-right-radius:5px;margin-bottom:0px;margin-top:0px;">Contact Information</h4> <div class="task_div2"> <p>ABC Corporation</p> <p> #400, St Marks Road,<br> Kengal Hanumanth Nagar,<br> Bangalore - 560075<br> India. </p> <p> Contact: Mr. Ravindra<br> Phone: +9198122487<br> Email: ravindra@abc.com<br> Website: www.abc.com </p> </div> </div> </div> </div> </section> </body> </html>