I have the \[code\]players\[/code\] table with three \[code\]field id\[/code\], \[code\]first_name\[/code\], \[code\]last_name\[/code\]. The \[code\]PlayersController\[/code\] have method \[code\]index\[/code\] that show every player in the table:\[code\]public function index() { $output = $this->Player->find('all'); $this->set(array( 'output' => $output, '_serialize' => array('output') )); $this->render('generic_response'); }\[/code\]and the generic_response is an XML view that look like this:\[code\]<?php$xml = Xml::fromArray(array('response' => $output));echo $xml->asXML();\[/code\]The resulting XML is:\[code\]<response> <output> <Player> <id>2</id> <first_name>Ciro</first_name> <second_name>Spee</second_name> </Player> </output> <output> <Player> <id>3</id> <first_name>Ugo</first_name> <second_name>Ridi</second_name> </Player> </output></response>\[/code\]but I want something like:\[code\]<response> <players> <Player> <id>2</id> <first_name>Ciro</first_name> <second_name>Spee</second_name> </Player> <Player> <id>3</id> <first_name>Ugo</first_name> <second_name>Ridi</second_name> </Player> </players></response>\[/code\]How can I do this?