We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
单选select支持传参数q,联动查询其他字段。请问多选multipleSelect也支持类似的功能吗?
虽然checkbox支持多选联动,但只支持固定类型的options(如下),不支持根据多选的数据进行查表。
$form->checkbox('nationality', '国籍') ->options([ 1 => '中国', 2 => '外国', ])->when([1, 2], function (Form $form) { $form->text('name', '姓名'); $form->text('idcard', '身份证'); })->when('has', 2, function (Form $form) { $form->text('name', '姓名'); $form->text('passport', '护照'); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
单选select支持传参数q,联动查询其他字段。请问多选multipleSelect也支持类似的功能吗?
虽然checkbox支持多选联动,但只支持固定类型的options(如下),不支持根据多选的数据进行查表。
The text was updated successfully, but these errors were encountered: