fix: make customer field optional in DelayedGoodForm schema

This commit is contained in:
Yoga Pangestu 2026-05-02 14:36:34 +07:00
parent 2b7535000a
commit a9e10849fd

View File

@ -89,8 +89,7 @@ public static function configure(Schema $schema): Schema
->relationship('customer', 'name') ->relationship('customer', 'name')
->searchable() ->searchable()
->preload() ->preload()
->native(false) ->native(false),
->required(),
]) ])
->columnSpanFull(), ->columnSpanFull(),