404
60 |Page Not Found
62 |It looks like you found a glitch in the matrix...
← Back to Dashboard 63 |├── 404.php ├── LEARN.md ├── LICENSE ├── README.md ├── assets ├── bootstrap │ ├── css │ │ └── bootstrap.min.css │ └── js │ │ └── bootstrap.min.js ├── css │ ├── Login-Form-Basic-icons.css │ ├── Nunito.css │ ├── Pricing-Centered-badges.css │ ├── bootstrap-select.min.css │ ├── bs-theme-overrides.css │ └── dataTables.bootstrap5.min.css ├── fonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-solid-900.woff2 │ └── fontawesome-all.min.css ├── img │ ├── avatars │ │ ├── avatar1.jpeg │ │ ├── avatar2.jpeg │ │ ├── avatar3.jpeg │ │ ├── avatar4.jpeg │ │ └── avatar5.jpeg │ ├── profile.png │ ├── qrcode.png │ └── washing-clothes.gif └── js │ ├── bootstrap-select.min.js │ ├── bs-init.js │ ├── buttons.html5.min.js │ ├── buttons.print.min.js │ ├── chart.min.js │ ├── dataTables.bootstrap5.min.js │ ├── dataTables.buttons.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.min.js │ ├── jszip.min.js │ ├── listTable.js │ ├── pdfmake.min.js │ ├── qrious.min.js │ ├── sweetalert.min.js │ ├── theme.js │ ├── togglepassword.js │ └── vfs_fonts.js ├── customer.php ├── expedinture.php ├── functions ├── add-customer.php ├── add-laundry.php ├── add-price.php ├── add-product.php ├── add-staff.php ├── add-supply.php ├── authentication.php ├── cancel-transaction.php ├── connection.php ├── down-transaction.php ├── login.php ├── logout.php ├── modals │ └── transaction-modal.php ├── proceed-transaction.php ├── remove-customer.php ├── remove-laundry.php ├── remove-price.php ├── remove-product.php ├── remove-staff.php ├── remove-supply.php ├── setup.php ├── stock-in.php ├── stock-out.php ├── transaction.php ├── up-transaction.php ├── update-account.php ├── update-customer.php ├── update-price.php ├── update-staff.php ├── update-supply.php └── views │ ├── activity.php │ ├── customers.php │ ├── dashboard-chart.php │ ├── dashboard-count.php │ ├── expenditure.php │ ├── get-data.php │ ├── laundry.php │ ├── navbar.php │ ├── price.php │ ├── products.php │ ├── queue-dashboard.php │ ├── queue.php │ ├── sales.php │ ├── staff.php │ └── supply.php ├── index.php ├── invoice.php ├── login.php ├── logs.php ├── profile-customer.php ├── profile-staff.php ├── profile.php ├── queue.php ├── receipt.php ├── sales.php ├── screenshots ├── image-1.png ├── image-2.png ├── image-old-1.png ├── image-old-2.png └── image.png ├── staff.php ├── supply.php ├── todo.txt ├── tracking.php └── transaction.php /404.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 |404
60 |Page Not Found
62 |It looks like you found a glitch in the matrix...
← Back to Dashboard 63 |Lists of Customers
59 |ID | 66 |Fullname | 67 |Address | 68 |Contact No. | 69 |Date Created | 70 |Options | 71 |
---|---|---|---|---|---|
Expenditure Lists
59 |ID # | 68 |Transaction ID | 69 |Item | 70 |Qty | 71 |User | 72 |Date | 73 |
---|---|---|---|---|---|
100 | ![]() 101 | Street Unknown, Pagadian City 102 | Phone (+63) 000-000-000 103 | Date: 104 | 105 | |
106 |
---|
Laundry Receipt | 119 |
---|
CUSTOMER: | 132 |133 | | 134 | | INVOICE # | 135 |
---|
LAUNDRY | 147 |
---|
LAUNDRY | 159 |160 | | PRICE | 161 |TOTAL | 162 |
---|
ITEMS | 174 |
---|
ITEM | 186 |UNIT | 187 |QTY | 188 |
---|
TOTAL ₱ | 200 |
---|
AMOUNT ₱ | 203 |
CHANGES ₱ | 206 |
**** PLEASE BRING THE RECEIPT TO CLAIM YOUR LAUNDRY **** | 216 |
---|
Transactions
60 |ID | 67 |User | 68 |Type | 69 |Logs | 70 |Date | 71 |
---|---|---|---|---|
Transactions
82 |ID | 89 |Customer | 90 |User | 91 |Total | 92 |Date | 93 |'.$row['id'].' | '; 102 | echo '![]() | ';
103 | echo '![]() | ';
104 | echo '₱' . number_format($row['total'], 2) . ' | '; 105 | echo '' . $row['created_at'] . ' | '; 106 | echo ''; 107 | } 108 | 109 | ?> 110 | 111 | 112 | 113 |
---|
Transactions
91 |ID | 98 |Customer | 99 |User | 100 |KG/Kilo | 101 |Total | 102 |Status | 103 |Date | 104 |' . $row['id'] . ' | '; 127 | echo '![]() | ';
128 | echo '![]() | ';
129 | echo '' . $row['kilo'] . ' | '; 130 | echo '' . $row['total'] . ' | '; 131 | echo '' . $status. ' | '; 132 | echo '' . $row['created_at'] . ' | '; 133 | echo ''; 134 | } 135 | 136 | ?> 137 | 138 | 139 | 140 |
---|
Laundry Queue
56 |Queue | 63 |Customer | 64 |Unit | 65 |Status | 66 |Options | 67 |
---|---|---|---|---|
Transactions
57 |Invoice | 64 |Customer | 65 |User | 66 |Total | 67 |Date | 68 |
---|---|---|---|---|
Lists of Staff
59 |ID | 66 |Staff | 67 |Date Created | 68 |Options | 69 |
---|---|---|---|
LMS - Laundry Management System (QRCode)
66 |Pending
111 |=$date0??=''?>
112 |Washing
121 |=$date1??=''?>
122 |Folding
131 |=$date2??=''?>
132 |Ready for Pickup
141 |=$date3??=''?>
142 |Order Claimed
151 |=$date4??=''?>
152 |