PHP
echo $this->Form->create('Street');
echo $this->Form->input('street', array('empty' => '-- select --', 'label' => '???'));
DB
ID | Street | Description
-----------------------
1 | Foo | Street 1 description
2 | Bar | Street 2 description
3 | FooFoo | Street 3 description
次のようなラベルを作成したい:
Foo - Street 1 description
お気に入り:
echo $this->Form->input('street', array('empty' => '-- select --', 'label' => 'Street.street - Street.description'));
Cakephp フォームヘルパーでこれを生成するにはどうすればよいですか? ありがとう!