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
$edit->addSelect('storehouse_id', '入库仓库')->options( Storehouse::listStoreHouse() )->required();
input参数是
"lego-form-storehouse_id" => "15"
修改成这个的时候:
$edit->addAutoComplete('storehouse_id', '入库仓库') ->match(function ($keyword) { return Storehouse::whereStatus(Storehouse::USEABLE_启用) ->where('name', 'like', "%{$keyword}%") ->take(20) ->get() ->pluck('name', 'id') ->toArray(); }) ->default('') ->required();
input是这个参数
"lego-form-storehouse_id" => "13" "lego-form-storehouse_id-text" => "哇哈哈"
PurchaseBill::creating(function (PurchaseBill $purchaseBill) { dump(\Input::input()); dd($purchaseBill); });
获取不到相应的值
The text was updated successfully, but these errors were encountered:
No branches or pull requests
input参数是
修改成这个的时候:
input是这个参数
获取不到相应的值
The text was updated successfully, but these errors were encountered: