for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webfactor\Laravel\Backpack\FluentSyntax\Columns;
use Webfactor\Laravel\Backpack\FluentSyntax\Contracts\CrudColumnAbstract;
class BooleanColumn extends CrudColumnAbstract
{
protected $type = 'boolean';
public function options(array $options)
$this->options['options'] = $options;
return $this;
}