📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
5434.96 KB
0644
🗑️
⬇️
✏️
🔒
Editing: ware_log.php
<?php include "admin_header.php"; ?> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <h1 class="h3 mb-4 text-gray-800">View Warehouse Stocks Log</h1> <!-- DataTales Example --> <div class="card shadow mb-4" style="overflow-y:scroll; width:100%;"> <div class="card-header py-3"> <h6 class="m-0 font-weight-bold text-primary">Warehouse Stocks Activity</h6> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>Action</th> <th>Stock Item</th> <th>Variation</th> <th>Stocks</th> <th>User</th> <th>Date</th> </tr> </thead> <tbody> <?php include "warelog.php"; ?> </tbody> </table> </div> </div> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <?php include "footer.php"; ?>
💾 Save Changes