for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Distilleries\FormBuilder\Fields;
class ChoiceArea extends FormFieldsView {
protected function getTemplate()
{
return 'choice_area';
}
protected function getDefaults()
return [
'choices' => [],
'selected' => []
];