It is very easy.
You can use the form helper.
Cake\View\Helper\FormHelper::radio(string $fieldName, array $options, array $attributes)
Using
echo $this->Form->radio( 'favorite_color', [ ['value' => 'r', 'text' => 'Red', 'style' => 'color:red;'], ['value' => 'u', 'text' => 'Blue', 'style' => 'color:blue;'], ['value' => 'g', 'text' => 'Green', 'style' => 'color:green;'], ] );
Documents
source share