From 0a07e4b6e6874fba163d3a39c8a702640ad5cff8 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 15 May 2026 14:40:40 +0530 Subject: [PATCH 1/4] Added space for testing in create wire master packing --- .../WireMasterPackingResource/Pages/CreateWireMasterPacking.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php b/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php index 47ce268..a8c0740 100644 --- a/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php +++ b/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php @@ -220,6 +220,7 @@ class CreateWireMasterPacking extends CreateRecord $customerPoName = $customerPoRecord->customer_po; + if ($customerPoRecord) { $customerPoName = $customerPoRecord->customer_po; } else { From c500759f5280dcb2c9bdcf651163b20da772a1b6 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 15 May 2026 14:41:20 +0530 Subject: [PATCH 2/4] Removed unwanted space in wire master packing --- .../WireMasterPackingResource/Pages/CreateWireMasterPacking.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php b/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php index a8c0740..47ce268 100644 --- a/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php +++ b/app/Filament/Resources/WireMasterPackingResource/Pages/CreateWireMasterPacking.php @@ -220,7 +220,6 @@ class CreateWireMasterPacking extends CreateRecord $customerPoName = $customerPoRecord->customer_po; - if ($customerPoRecord) { $customerPoName = $customerPoRecord->customer_po; } else { From 4309003fbdff9cde7458472cdb9144e992800ba4 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 15 May 2026 14:42:46 +0530 Subject: [PATCH 3/4] Updated admin credentials in AdminSeeder --- database/seeders/AdminSeeder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/seeders/AdminSeeder.php b/database/seeders/AdminSeeder.php index 0c519c0..eff2ab4 100644 --- a/database/seeders/AdminSeeder.php +++ b/database/seeders/AdminSeeder.php @@ -21,7 +21,7 @@ class AdminSeeder extends Seeder // Data to update/create [ 'name' => 'Admin', - 'password' => Hash::make('jOtHi#9000'), + 'password' => Hash::make('jOtHi$9000'), 'updated_at' => now(), 'created_at' => now(), ] From 854330caf24302278d34534b7eb381b2205cc617 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Fri, 15 May 2026 14:45:39 +0530 Subject: [PATCH 4/4] Added slug name as welcome --- app/Filament/Pages/Dashboard.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Filament/Pages/Dashboard.php b/app/Filament/Pages/Dashboard.php index 4a3879d..3a93690 100644 --- a/app/Filament/Pages/Dashboard.php +++ b/app/Filament/Pages/Dashboard.php @@ -23,6 +23,8 @@ class Dashboard extends \Filament\Pages\Dashboard protected static string $view = 'filament.pages.dashboard'; + protected static ?string $slug = 'welcome'; + // public function mount(): void // { // session()->forget(['selected_plant']);