Cakephp

Custom form radio button Cakephp 3

Trong cakephp 3
radio button sẽ có dạng như sau

<label>
     <input id="#" name="#" type="radio" value="1" />
     text
</label>

sử dụng key sau để custom lại form radio cho mục đích làm css

'templates' => [
  'nestingLabel' => '{{hidden}}<label{{attrs}}>{{text}}{{input}}',
  'radioWrapper' => '<div class="radio">{{label}}</div>'
]