Good day. I use the Fenom template engine and in it I output an array with the template settings including the sidebar list. Where the tab data is stored. 
Since it is located in the array under the array, the code is:
{foreach $sidebar as $key => $value} <div>{$key} : {$value}</div> {/foreach} I get
0 : Array 1 : Array 2 : Array 3 : Array
{$value.name}or{$value['name']}, it will display the category name from the array. - Bookin