From 9cbf841feb0e6084c05c79ddca790494326d6a1b Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Wed, 29 Jul 2026 10:16:03 +0700 Subject: [PATCH] feat: add search functionality to CuttingInProgressSection for filtering cuttings by product name - Implemented a search input to filter cuttings based on the product name. - Introduced computed property for managing filtered cuttings. - Enhanced the UI to display a message when no cuttings match the search criteria. --- .../table/CuttingInProgressSection.vue | 33 +++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/resources/js/pages/admin/manage/cuttings/table/CuttingInProgressSection.vue b/resources/js/pages/admin/manage/cuttings/table/CuttingInProgressSection.vue index c7e5e3f..b4fdce4 100644 --- a/resources/js/pages/admin/manage/cuttings/table/CuttingInProgressSection.vue +++ b/resources/js/pages/admin/manage/cuttings/table/CuttingInProgressSection.vue @@ -1,5 +1,8 @@