selectTable('dist_id', 'Select Distributor') ->width(12,12) ->setLabelClass('d-flex') ->title('Select Distributor') ->placeholder('Select Distributor') ->from(DistDistributorTable::make()); //主题选择 $this->select('appearance_id','Select Appearance') ->options(DistAppearance::selectOptions(true)) ->width(12,12) ->setLabelClass('d-flex'); $this->disableSubmitButton(); $this->disableResetButton(); } // 处理表单提交请求 public function handle(array $input) { return $this->response()->success('Processed successfully.')->refresh(); } /** * 返回表单数据,如不需要可以删除此方法 * * @return array */ public function default() { return [ ]; } }