我需要在默认的“ input checkbox” div旁边添加bootstrap自定义复选框类,并向标签添加类,以便我可以使用cakephp 3表单助手获得bootstrap复选框的布局。
答案 0 :(得分:0)
$this->Form->control('status', [
'class' => 'custom-control-input',
'templates' => [
'inputContainer' => '<div class="custom-control custom-checkbox input {{type}}{{required}}">{{content}}</div>',
'nestingLabel' => '{{input}} <label{{attrs}} class="custom-control-label">{{text}}</label>'
],
]);