Calling any controllerls action from view file in cakephp 3.8

Below is the code I was using in cakephp 1.3 for calling action from controller.
$proactive_chart_data = $this->requestAction("/health/group_consult_data_bootstrap/".$company_id, array(‘return’));

Now I am upgrading my same website to cakephp 3.8.
Is there any simplest way to use above code for calling action from controller ?
Please help.

Requesting actions from controllers like this proved problematic in various ways. View cells are one way to solve some of the most common uses of this.