From a9e10849fde3898c3c9c84cd563ae55edbec2a2e Mon Sep 17 00:00:00 2001 From: Yoga Pangestu Date: Sat, 2 May 2026 14:36:34 +0700 Subject: [PATCH] fix: make customer field optional in DelayedGoodForm schema --- .../Resources/DelayedGoods/Schemas/DelayedGoodForm.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Filament/Resources/DelayedGoods/Schemas/DelayedGoodForm.php b/app/Filament/Resources/DelayedGoods/Schemas/DelayedGoodForm.php index 7d676ce..11739f6 100644 --- a/app/Filament/Resources/DelayedGoods/Schemas/DelayedGoodForm.php +++ b/app/Filament/Resources/DelayedGoods/Schemas/DelayedGoodForm.php @@ -89,8 +89,7 @@ public static function configure(Schema $schema): Schema ->relationship('customer', 'name') ->searchable() ->preload() - ->native(false) - ->required(), + ->native(false), ]) ->columnSpanFull(),