LazyRecord\Schema\Helper\FlagHelper::init PHP Method

init() public method

public init ( string $name, $label, $checked = false )
$name string The column name
    public function init($name, $label, $checked = false)
    {
        $this->schema->column($name)->boolean()->label($label)->renderAs('CheckboxInput')->default($checked);
    }
FlagHelper