From 8d7088264310ffe9c12a779ef23cf6ecb409e900 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 26 Feb 2026 10:10:16 +0530 Subject: [PATCH] Added group name for wire master packing --- app/Filament/Pages/WireMasterPrint.php | 4 +++- app/Filament/Resources/CustomerPoMasterResource.php | 2 ++ app/Filament/Resources/WireMasterPackingResource.php | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/Filament/Pages/WireMasterPrint.php b/app/Filament/Pages/WireMasterPrint.php index 6fcadec..8be249c 100644 --- a/app/Filament/Pages/WireMasterPrint.php +++ b/app/Filament/Pages/WireMasterPrint.php @@ -22,7 +22,9 @@ class WireMasterPrint extends Page protected static string $view = 'filament.pages.wire-master-print'; - use InteractsWithForms; + protected static ?string $navigationGroup = 'Master Packing'; + + use InteractsWithForms; public $pId, $palletNo, $serialNo; public $snoCount = 0; diff --git a/app/Filament/Resources/CustomerPoMasterResource.php b/app/Filament/Resources/CustomerPoMasterResource.php index 8b3de0c..f6a82e9 100644 --- a/app/Filament/Resources/CustomerPoMasterResource.php +++ b/app/Filament/Resources/CustomerPoMasterResource.php @@ -26,6 +26,8 @@ class CustomerPoMasterResource extends Resource protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack'; + protected static ?string $navigationGroup = 'Master Packing'; + public static function form(Form $form): Form { return $form diff --git a/app/Filament/Resources/WireMasterPackingResource.php b/app/Filament/Resources/WireMasterPackingResource.php index 57e3c89..7513a3e 100644 --- a/app/Filament/Resources/WireMasterPackingResource.php +++ b/app/Filament/Resources/WireMasterPackingResource.php @@ -24,6 +24,8 @@ class WireMasterPackingResource extends Resource protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack'; + protected static ?string $navigationGroup = 'Master Packing'; + public $importedPoList = []; -- 2.49.1