diff --git a/app/Views/monthlypayinputs.php b/app/Views/monthlypayinputs.php
index b97620a9..16575911 100755
--- a/app/Views/monthlypayinputs.php
+++ b/app/Views/monthlypayinputs.php
@@ -212,20 +212,18 @@
-
-
-
-
-
-
-
-
@@ -1389,6 +1387,14 @@ function showMessage(msg) {
}, 3000);
}
+$("#searchInput").on("keyup", function () {
+ let value = $(this).val().toLowerCase(); // Convert input to lowercase for case-insensitive search
+
+ $("#table-responsive tbody tr").filter(function () {
+ $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1);
+ });
+});
+