select('source_chest_id', '源宝箱') ->options(Item::where('type', 3)->pluck('name', 'id')) ->required(); // 目标宝箱选择 $form->select('target_chest_id', '目标宝箱') ->options(Item::where('type', 3)->pluck('name', 'id')) ->required(); $form->action(admin_url('game-items/chest-open-costs/copy')); return Modal::make() ->lg() ->title($this->title) ->body($form) ->button(""); } }