I am passing the following two dimentional array to my twig.
Array (
[0] => Array ( [restaurantname] => Pizza Hut
[restaurantaddress] => Union Place
[restauranttelephone] => 5555522255
[mstrestaurantstatusid] => 1
[restaurantid] => 1 )
[1] => Array ( [restaurantname] => The Coffee Bean
[restaurantaddress] => Maitland Crescent
[restauranttelephone] => 3333569855
[mstrestaurantstatusid] => 1
[restaurantid] => 2 )
)
Inside my twig, I want to print only the restaurant names. But I'll be using the other information later on. I'm having trouble printing only the restaurant names. Please help. Thank you.