CakePHP3でformを作った時に、例があんまりなかったり、2系の情報見てうまくいかなかったりしたのでめも 例 <?=$this->Form->create(null,['type' => 'post'])?> <ul class="list"> <?= $this->Form->input('reportType', [ 'type' => 'radio', 'options' => [ ['value' => 'blue', 'text' => '青'], ['value' => 'mint', 'text' => 'ミントグリーン'], ['value' => 'red', 'text' => '赤'] ['value' => 'white', 'text' => '白'] ['value' => 'purple', 'text' => '紫'] ['value' => 'yel
