src/Fields/Checkbox.php
<?php
namespace Grafite\Forms\Fields;
use Grafite\Forms\Fields\Field;
class Checkbox extends Field
{
protected static function getType()
{
return 'checkbox';
}
protected static function getOptions()
{
return [
'class' => '',
];
}
protected static function getAttributes()
{
return [
'class' => 'form-check-input'
];
}
protected static function getFactory()
{
return 'boolean';
}
}