Has anyone implemented Dropdown
How to implement it in Laravel? Like $service = new Text([....]);How can we implement Dropdown in DocuSign Dropdown class is not available in "composer require docusign/esign-client" package so how do I import the dropdown class Thanks in advance for any guide or code
This is called
ListTab
, so you need to look for List. In PHP it's calledModelList
and you can find it at https://github.com/docusign/docusign-esign-php-client/blob/master/src/Model/ModelList.phpSo you add
ListTab
to the Tabs object, and that object is instantiated as theModelList
class.