/
home
/
sditechnicalteam
/
socialsolargreens.pk
/
File Upload :
llllll
Current File: /home/sditechnicalteam/socialsolargreens.pk/CashReceiving_list.php
<?php include_once('controller/Cash_Receiving_controller.php'); include_once('partial/link.php'); include_once('partial/header.php'); include_once('partial/navbar.php'); $Cash_Receiving = new Cash_Receiving(); $Cash_Receiving_list = $Cash_Receiving->Cash_Receiving_list(); ?> <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="main-content"> <div class="page-content"> <?php // print_r($second_lavel_List); ?> <div class="container"> <!-- start page title --> <div class="row"> <div class="col-md-12"> <a class="btn btn-success fa-pull-right " style="margin-left:30px" asp-action="Create" href="<?=BASE_URL?>Create_new_CashReceiving.php"><i class="fa fa-plus-circle"></i> Create New</a> </div> <div class="col-12" style="margin-top:20px"> <div class="card"> <div class="card-body"> <h5><i class="fa fa-table"></i> Cash Receiving Table</h5> <hr> <table id="datatable" class="table table-striped table-bordered nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;"> <thead> <tr> <th>V-No</th> <th>Date</th> <th>Amount</th> <th>Remarks</th> <th>Action</th> </tr> </thead> <tfoot> <tr> <th>V-No</th> <th>Date</th> <th>Amount</th> <th>Remarks</th> <th>Action</th> </tr> </tfoot> <tbody> <?php while($row = mysqli_fetch_assoc($Cash_Receiving_list)){ // print_r($row); ?> <tr> <td><?= $row['V_No']; ?></td> <td><?= $row['TransDate']; ?></td> <td><?= $row['Dr']; ?></td> <td><?= $row['TransDes']; ?></td> <td> <a onclick="return confirm('Are you sure you want to Execute ?');" class="badge badge-success" data-toggle="tooltip" data-placement="left" title="" href="<?=BASE_URL?>Create_new_CashReceiving.php?q=Edit&V_No=<?= $row['V_No']; ?>" data-original-title="Click Me To Edit"><i class="fa fa-edit"></i></a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> <!-- end col --> </div> <!-- end row --> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php include 'partial/footer.php'; ?>
Copyright ©2k19 -
Hexid
|
Tex7ure