Files
datatable.directory/app/View/CheckboxWidget.php
T
2018-07-21 19:24:00 +02:00

15 lines
190 B
PHP

<?php
namespace App\View;
class CheckboxWidget extends Widget
{
public function checked($condition=true)
{
$this->value = (bool)$condition;
return $this;
}
}