I m 在Laravel Filament V3建造一个表格,处理客户订单。 目前,我已经开了一个izar子。 在你选择现有客户时,我想让它自动接收地址、电子邮件和联系信息。
我审视了这些文件,我认为,指标说明是我所需要的选择,但我不敢执行。
我的法典至今为止。
return $form
->schema([
FormsComponentsWizard::make([
FormsComponentsWizardStep::make( Customer Details )
->schema([
FormsComponentsSelect::make( Company Name )
->required()
->searchable()
->getSearchResultsUsing(fn (string $search): array => Customer::where( Company Name , like , "%{$search}%")->limit(50)->pluck( Company Name )->toArray())
->reactive(),
FormsComponentsTextInput::make( Company Ref ),
FormsComponentsTextInput::make( Telephone no ),
FormsComponentsTextInput::make( Mobile No ),
FormsComponentsTextInput::make( Email )
->reactive(),
FormsComponentsTextInput::make( Contact ),
FormsComponentsTextInput::make( Artwork Contact ),
FormsComponentsTextInput::make( Web ),
]),
还有其他一些步骤令人们感到困惑,但是他们希望首先走一步。 是否设定了正确的选择,或者有更好的办法这样做