for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Distilleries\FormBuilder\Fields;
class DatePicker extends FormFieldsView {
protected function getTemplate()
{
return 'datepicker';
}
protected function getDefaults()
return [
'range' => false,
'format' => 'mm/dd/yyyy',
'autoclose' => true,
'todayHighlight' => true
];