%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php if ($this->session->flashdata('result_publish')) { ?> <div class="alert alert-success"><?= $this->session->flashdata('result_publish') ?></div> <?php } ?> <div class="content"> <?php if($products){ ?> <table class="table"> <thead class="blue-grey lighten-4"> <tr> <th>S. No.</th> <th>Name</th> <th>Mobile Number</th> <th>Email Id</th> <th>Status</th> <th>Prescription</th> </tr> </thead> <tbody> <?php $i = 1; foreach ($products as $product) { ?> <tr> <td><?= $i ?></td> <td><?= $product->full_name?></td> <td><?= $product->mobile_number ?></td> <td><?= $product->email_id ?></td> <td><?php if($product->status=='0'){ echo 'Not Confirmed';}else{ echo 'Confirmed';} ?></td> <td><button type="button" class="btn btn-primay" data-toggle="modal" data-target="#myModal<?=$product->id ?>">View Prescription</button></td> </tr> <div class="modal fade" id="myModal<?=$product->id ?>" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h3>Prescription</h3> </div> <div class="modal-body"> <img src="<?= base_url('attachments/prescription/'.$product->prescription) ?>" > </div> </div> </div> </div> <?php $i++; } ?> </tbody> </table> <?php } else { echo 'No Leads Added Yet!!';} ?> <?= $links_pagination ?> </div>